|
20 | 20 | required: true
|
21 | 21 | type: boolean
|
22 | 22 |
|
23 |
| -env: |
24 |
| - MUSL_CROSS_MAKE_VERSION: 7b9487e56efc83c419a397af7df7f119001dc51c |
25 |
| - |
26 | 23 | jobs:
|
27 |
| - android: |
28 |
| - name: Android arm64 |
29 |
| - runs-on: ubuntu-20.04 |
30 |
| - |
31 |
| - steps: |
32 |
| - - uses: actions/checkout@v4 |
33 |
| - |
34 |
| - - name: Install tools and dependencies |
35 |
| - run: | |
36 |
| - sudo apt-get update |
37 |
| - sudo apt-get install make autoconf automake libtool libtool-bin m4 wget libc-bin gzip bzip2 bison g++ git re2c |
38 |
| - cmake --version |
39 |
| -
|
40 |
| - - name: Prepare compile.sh download cache |
41 |
| - id: download-cache |
42 |
| - uses: actions/cache@v4 |
43 |
| - with: |
44 |
| - path: ./download_cache |
45 |
| - key: compile-sh-cache-ssl-https-${{ hashFiles('./compile.sh') }} |
46 |
| - restore-keys: compile-sh-cache-ssl-https- |
47 |
| - |
48 |
| - - name: Fetch compiler cache |
49 |
| - id: compiler-cache |
50 |
| - uses: actions/cache@v4 |
51 |
| - with: |
52 |
| - path: ${{ github.workspace }}/compiler |
53 |
| - key: musl-cross-make-${{ env.MUSL_CROSS_MAKE_VERSION }} |
54 |
| - restore-keys: musl-cross-make- |
55 |
| - |
56 |
| - - name: Checkout musl-cross-make |
57 |
| - if: steps.compiler-cache.outputs.cache-hit != 'true' |
58 |
| - uses: actions/checkout@v4 |
59 |
| - with: |
60 |
| - repository: pmmp/musl-cross-make |
61 |
| - path: musl-cross-make |
62 |
| - ref: ${{ env.MUSL_CROSS_MAKE_VERSION }} |
63 |
| - |
64 |
| - - name: Build compiler |
65 |
| - if: steps.compiler-cache.outputs.cache-hit != 'true' |
66 |
| - working-directory: musl-cross-make |
67 |
| - run: | |
68 |
| - echo "TARGET = aarch64-linux-musl" > config.mak |
69 |
| - make -j$(nproc) |
70 |
| - make install |
71 |
| - mv ./output "${{ github.workspace }}/compiler" |
72 |
| -
|
73 |
| - - name: Compile PHP |
74 |
| - run: | |
75 |
| - export PATH="${{ github.workspace }}/compiler/bin:$PATH" |
76 |
| -
|
77 |
| - # Used "set -ex" instead of hashbang since script isn't executed with hashbang |
78 |
| - set -ex |
79 |
| - trap "exit 1" ERR |
80 |
| - ./compile.sh -t android-aarch64 -x -j 4 -g -F -P ${{ inputs.pm-version-major }} -c ./download_cache -D -z ${{ inputs.php-version-base }} |
81 |
| - |
82 |
| - |
83 |
| - - name: Create tarball |
84 |
| - run: | |
85 |
| - tar -czf ./PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}.tar.gz bin |
86 |
| - tar -czf ./Z-PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug |
87 |
| -
|
88 |
| - - name: Upload artifacts |
89 |
| - uses: actions/upload-artifact@v4 |
90 |
| - if: always() |
91 |
| - with: |
92 |
| - name: PHP-${{ inputs.php-version-base }}-Android-PM${{ inputs.pm-version-major }} |
93 |
| - path: | |
94 |
| - ./*PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}*.tar.gz |
95 |
| - install.log |
96 |
| - compile.sh |
97 |
| - if-no-files-found: error |
98 |
| - |
99 |
| - - name: Prepare workspace for upload |
100 |
| - if: failure() |
101 |
| - run: tar -czf workspace.tar.gz install_data |
102 |
| - |
103 |
| - - name: Upload workspace |
104 |
| - uses: actions/upload-artifact@v4 |
105 |
| - if: failure() |
106 |
| - with: |
107 |
| - name: PHP-${{ inputs.php-version-base }}-Android-workspace-PM${{ inputs.pm-version-major }} |
108 |
| - path: | |
109 |
| - workspace.tar.gz |
110 |
| - if-no-files-found: error |
111 |
| - |
112 | 24 | linux:
|
113 | 25 | name: Linux
|
114 | 26 | runs-on: ubuntu-20.04
|
@@ -274,7 +186,7 @@ jobs:
|
274 | 186 |
|
275 | 187 | publish:
|
276 | 188 | name: Publish binaries
|
277 |
| - needs: [linux, macos, windows, android] |
| 189 | + needs: [linux, macos, windows] |
278 | 190 | runs-on: ubuntu-20.04
|
279 | 191 | if: ${{ github.ref_name == 'stable' && github.ref_type == 'branch' && !contains(github.event.head_commit.message, '[no release]') }}
|
280 | 192 | concurrency: release-${{ inputs.php-version-base }}-pm${{ inputs.pm-version-major }}
|
|
0 commit comments