Skip to content

Commit 6d22505

Browse files
committed
lol
1 parent 9444d95 commit 6d22505

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jenkins/createArmhfMuslGcc.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ def call(jenkins) {
1010
]
1111
Closure action = {
1212
sh """/bin/bash -ex
13-
git clone --depth 1 https://github.com/richfelker/musl-cross-make.git build/
14-
cp config.mak build/config.mak && cd build/
13+
git clone --depth 1 https://github.com/richfelker/musl-cross-make.git
14+
cd musl-cross-make && cp config.mak musl-cross-make/config.mak
1515
export CFLAGS="-fPIC -g1 \$CFLAGS"
1616
export TARGET=arm-linux-musleabihf
1717
make -j4
1818
make install
1919
"""
2020

2121
sh 'echo $(pwd)'
22-
tar(file: 'arm-linux-musleabifh-cross.tar.gz', compress: true, dir: 'build/output', archive: true)
22+
tar(file: 'arm-linux-musleabifh-cross.tar.gz', compress: true, dir: 'musl-cross-make/output', archive: true)
2323
}
2424

2525
return createStage(name, options, action)

0 commit comments

Comments
 (0)