Skip to content

Commit 42427c5

Browse files
committed
Remove android workflow.
1 parent 1093df0 commit 42427c5

File tree

1 file changed

+1
-89
lines changed

1 file changed

+1
-89
lines changed

.github/workflows/main-pm-matrix.yml

+1-89
Original file line numberDiff line numberDiff line change
@@ -20,95 +20,7 @@ on:
2020
required: true
2121
type: boolean
2222

23-
env:
24-
MUSL_CROSS_MAKE_VERSION: 7b9487e56efc83c419a397af7df7f119001dc51c
25-
2623
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-
11224
linux:
11325
name: Linux
11426
runs-on: ubuntu-20.04
@@ -274,7 +186,7 @@ jobs:
274186

275187
publish:
276188
name: Publish binaries
277-
needs: [linux, macos, windows, android]
189+
needs: [linux, macos, windows]
278190
runs-on: ubuntu-20.04
279191
if: ${{ github.ref_name == 'stable' && github.ref_type == 'branch' && !contains(github.event.head_commit.message, '[no release]') }}
280192
concurrency: release-${{ inputs.php-version-base }}-pm${{ inputs.pm-version-major }}

0 commit comments

Comments
 (0)