Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b0b52d5b3 | ||
|
|
1587d5b8dc | ||
|
|
3efa0f069f |
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@@ -15,7 +15,7 @@ for (int i = 0; i < targets.size(); i++) {
|
|||||||
sh "./scripts/setup-env.sh"
|
sh "./scripts/setup-env.sh"
|
||||||
}
|
}
|
||||||
stage("fetch $machine") {
|
stage("fetch $machine") {
|
||||||
sh "GIT_LOCAL_REF_DIR=/srv/git-cache/ ./scripts/fetch.sh master"
|
sh "GIT_LOCAL_REF_DIR=/srv/git-cache/ ./scripts/fetch.sh sumo"
|
||||||
}
|
}
|
||||||
stage("build $machine") {
|
stage("build $machine") {
|
||||||
sh "MACHINE=${machine} ./scripts/build.sh"
|
sh "MACHINE=${machine} ./scripts/build.sh"
|
||||||
@@ -25,7 +25,7 @@ for (int i = 0; i < targets.size(); i++) {
|
|||||||
throw e
|
throw e
|
||||||
} finally {
|
} finally {
|
||||||
stage("push build cache $machine") {
|
stage("push build cache $machine") {
|
||||||
sh "./scripts/publish-build-cache.sh master"
|
sh "./scripts/publish-build-cache.sh sumo"
|
||||||
}
|
}
|
||||||
stage("cleanup $machine") {
|
stage("cleanup $machine") {
|
||||||
sh "./scripts/cleanup-env.sh"
|
sh "./scripts/cleanup-env.sh"
|
||||||
|
|||||||
@@ -23,6 +23,6 @@ do_install () {
|
|||||||
# With the incremental build support added in 1.24, the libstd deps directory also includes dependency
|
# With the incremental build support added in 1.24, the libstd deps directory also includes dependency
|
||||||
# files that get installed. Those are really only needed to incrementally rebuild the libstd library
|
# files that get installed. Those are really only needed to incrementally rebuild the libstd library
|
||||||
# itself and don't need to be installed.
|
# itself and don't need to be installed.
|
||||||
rm ${B}/${TARGET_SYS}/release/deps/*.d
|
rm -f ${B}/${TARGET_SYS}/release/deps/*.d
|
||||||
cp ${B}/${TARGET_SYS}/release/deps/* ${D}${rustlibdir}
|
cp ${B}/${TARGET_SYS}/release/deps/* ${D}${rustlibdir}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user