Skip to content

Commit

Permalink
Update Publish-ISO to use correct build for fangtooth
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrabain authored Jan 28, 2025
1 parent 54f4525 commit 1dbd389
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jenkins/Publish-ISO
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ pipeline {
stage('Upload') {
steps {
echo '*** Grabbing artifacts from Build - TrueNAS SCALE (Full - Nightly ISO) ***'
copyArtifacts filter: '**/*.iso', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE (Full - Nightly ISO)', selector: lastSuccessful(), target: 'upload/files'
copyArtifacts filter: '**/*.sha256', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE (Full - Nightly ISO)', selector: lastSuccessful(), target: 'upload/files'
copyArtifacts filter: '**/*.iso', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE Fangtooth - Nightly', selector: lastSuccessful(), target: 'upload/files'
copyArtifacts filter: '**/*.sha256', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE Fangtooth - Nightly'', selector: lastSuccessful(), target: 'upload/files'
sh 'ssh [email protected] mkdir -p /zdata/download.sys.truenas.net/truenas-scale-fangtooth-nightly/ || true'
sh 'scp upload/files/TrueNAS-SCALE*.iso upload/files/TrueNAS-SCALE*.iso.sha256 [email protected]:/zdata/download.sys.truenas.net/truenas-scale-fangtooth-nightly/'
sh 'rm -rf upload/files'
copyArtifacts filter: '**/*.update', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE (Full - Nightly ISO)', selector: lastSuccessful(), target: 'upload/files'
copyArtifacts filter: '**/*.json', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE (Full - Nightly ISO)', selector: lastSuccessful(), target: 'upload/files'
copyArtifacts filter: '**/*.update', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE Fangtooth - Nightly', selector: lastSuccessful(), target: 'upload/files'
copyArtifacts filter: '**/*.json', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE Fangtooth - Nightly', selector: lastSuccessful(), target: 'upload/files'
sh 'ssh [email protected] mkdir -p /zdata/update.sys.truenas.net/scale/TrueNAS-SCALE-Fangtooth-Nightlies || true'
sh 'scp upload/files/manifest.json upload/files/TrueNAS-SCALE-*.update [email protected]:/zdata/update.sys.truenas.net/scale/TrueNAS-SCALE-Fangtooth-Nightlies/'
sh 'rm -rf upload/files'
Expand Down

0 comments on commit 1dbd389

Please sign in to comment.