-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Publish-ISO to use correct build for fangtooth
- Loading branch information
1 parent
54f4525
commit 1dbd389
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|