Skip to content

Commit 745c6c4

Browse files
committed
fix: fixed compile.sh version
1 parent ab30856 commit 745c6c4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
matrix:
2020
build: [false, true]
2121
variant: [richfelker/musl-cross-make, userdocs/qbt-musl-cross-make]
22+
env:
23+
REPO: ${{ matrix.variant }}
2224
steps:
2325
- name: Checkout code
2426
uses: actions/checkout@v4
@@ -37,10 +39,12 @@ jobs:
3739
sudo apt-get install -y make autoconf automake libtool-bin m4 wget gzip bzip2 bison g++ re2c
3840
3941
- name: Build project
42+
id: build
4043
run: |
44+
echo "source_escaped=${REPO%%/*}_${REPO##*/}" >> $GITHUB_OUTPUT
4145
echo ${{ steps.compiler.outputs.path }}
4246
ls ${{ steps.compiler.outputs.path }}
43-
wget https://raw.githubusercontent.com/pmmp/PHP-Binaries/master/compile.sh
47+
wget https://raw.githubusercontent.com/pmmp/PHP-Binaries/19f2ee6d3356db9185d341431904cd7c1dffad8c/compile.sh
4448
chmod a+x compile.sh
4549
trap "exit 1" ERR
4650
./compile.sh -t android-aarch64 -x -j4 -P5 -s
@@ -53,7 +57,7 @@ jobs:
5357
uses: actions/upload-artifact@v4
5458
if: always()
5559
with:
56-
name: Linux-PM5
60+
name: Linux-PM5-${{ matrix.source_escaped }}-${{ matrix.build }}
5761
path: |
5862
./PHP-Linux-aarch64-PM*.tar.gz
5963
install.log

0 commit comments

Comments
 (0)