Migrate helper CLI Tools to a different repo

This commit is contained in:
zontreck 2024-08-30 11:21:07 -07:00
parent d4833445c5
commit df3bd6e9ea
4 changed files with 0 additions and 114 deletions

5
Jenkinsfile vendored
View file

@ -38,7 +38,6 @@ pipeline {
always {
archiveArtifacts artifacts: '*.tgz', fingerprint: true
archiveArtifacts artifacts: '*.apk', fingerprint: true
archiveArtifacts artifacts: 'out/*', fingerprint: true
archiveArtifacts artifacts: '*.AppImage', fingerprint: true
archiveArtifacts artifacts: '*.zsync', fingerprint: true
@ -57,9 +56,6 @@ pipeline {
bat 'flutter pub get'
bat 'flutter build windows'
bat 'dart compile exe -o out\\snbt2nbt.exe bin\\snbt2nbt.dart'
bat 'dart compile exe -o out\\nbt2snbt.exe bin\\nbt2snbt.dart'
dir("build\\windows\\x64\\runner\\Release") {
bat 'tar -cvf ..\\..\\..\\..\\..\\windows.tgz .'
}
@ -69,7 +65,6 @@ pipeline {
}
post {
always {
archiveArtifacts artifacts: 'out\\*', fingerprint: true
archiveArtifacts artifacts: '*.tgz', fingerprint: true
deleteDir()