Skip to content

Commit 19f6be3

Browse files
committed
updates
1 parent 77485f7 commit 19f6be3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

config.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To install directly to a specific location, set it here. Multiple targets
44
# can safely be installed in the same location. Some examples:
55

6-
#OUTPUT = /tmp/musl
6+
OUTPUT = ./arm-linux-musleabihf
77

88
# By default, latest supported release versions of musl and the toolchain
99
# components are used. You can override those here, but the version selected

jenkins/createArmhfMuslGcc.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,17 @@ def call(jenkins) {
1616
export TARGET=arm-linux-musleabihf
1717
make -j4
1818
make install
19-
tar -czf arm-linux-musleabihf-cross.tar.gz -C output/
19+
tar -czf arm-linux-musleabihf-cross.tar.gz arm-linux-musleabihf/
2020
"""
2121

2222
archiveArtifacts artifacts: 'musl-cross-make/arm-linux-musleabihf-cross.tar.gz'
23+
24+
jenkins.context.archivePatters
25+
patterns: ['musl-cross-make/arm-linux-musleabihf-cross.tar.gz'],
26+
path: 'swift-toolchains/' + jenkins.context.gitDescribe() + '/arm-linux-musleabihf-cross.tar.gz'
2327
}
2428

29+
2530
return createStage(name, options, action)
2631
}
2732

0 commit comments

Comments
 (0)