-
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.
Corrected master to Goldeye for push jobs (#819)
* Update Publish-ISO Updated fangtooth to goldeye * Update Publish-Update Updated fangtooth to goldeye * Update Publish-Update * Update Publish-ISO
- Loading branch information
1 parent
6135afd
commit 4b6e4c1
Showing
2 changed files
with
6 additions
and
6 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 |
---|---|---|
|
@@ -10,13 +10,13 @@ pipeline { | |
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' | ||
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 'ssh [email protected] mkdir -p /zdata/download.sys.truenas.net/truenas-scale-goldeye-nightly/ || true' | ||
sh 'scp upload/files/TrueNAS-SCALE*.iso upload/files/TrueNAS-SCALE*.iso.sha256 [email protected]:/zdata/download.sys.truenas.net/truenas-scale-goldeye-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' | ||
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 'ssh [email protected] mkdir -p /zdata/update.sys.truenas.net/scale/TrueNAS-SCALE-Goldeye-Nightlies || true' | ||
sh 'scp upload/files/manifest.json upload/files/TrueNAS-SCALE-*.update [email protected]:/zdata/update.sys.truenas.net/scale/TrueNAS-SCALE-Goldeye-Nightlies/' | ||
sh 'rm -rf upload/files' | ||
} | ||
} | ||
|
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 |
---|---|---|
|
@@ -13,8 +13,8 @@ pipeline { | |
echo '*** Grabbing artifact from Build - TrueNAS SCALE (Incremental) ***' | ||
copyArtifacts filter: '**/*.update', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE (Incremental)', selector: lastSuccessful(), target: 'upload/files' | ||
copyArtifacts filter: '**/*.json', fingerprintArtifacts: true, flatten: true, projectName: 'Build - TrueNAS SCALE (Incremental)', selector: lastSuccessful(), target: 'upload/files' | ||
sh 'ssh [email protected] mkdir -p /zdata/dev-update.sys.truenas.net/scale/TrueNAS-SCALE-Fangtooth-Nightlies || true' | ||
sh 'scp upload/files/manifest.json upload/files/TrueNAS-SCALE-*.update [email protected]:/zdata/dev-update.sys.truenas.net/scale/TrueNAS-SCALE-Fangtooth-Nightlies/' | ||
sh 'ssh [email protected] mkdir -p /zdata/dev-update.sys.truenas.net/scale/TrueNAS-SCALE-Goldeye-Nightlies || true' | ||
sh 'scp upload/files/manifest.json upload/files/TrueNAS-SCALE-*.update [email protected]:/zdata/dev-update.sys.truenas.net/scale/TrueNAS-SCALE-Goldeye-Nightlies/' | ||
sh 'rm -rf upload/files' | ||
} | ||
} | ||
|