Skip to content

Commit 34c2856

Browse files
committed
Update NG Binaries to new action
1 parent eb919ee commit 34c2856

File tree

5 files changed

+616
-99
lines changed

5 files changed

+616
-99
lines changed

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

+2-89
Original file line numberDiff line numberDiff line change
@@ -20,94 +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-
39-
- name: Prepare compile.sh download cache
40-
id: download-cache
41-
uses: actions/cache@v4
42-
with:
43-
path: ./download_cache
44-
key: compile-sh-cache-ssl-https-${{ hashFiles('./compile.sh') }}
45-
restore-keys: compile-sh-cache-ssl-https-
46-
47-
- name: Fetch compiler cache
48-
id: compiler-cache
49-
uses: actions/cache@v4
50-
with:
51-
path: ${{ github.workspace }}/compiler
52-
key: musl-cross-make-${{ env.MUSL_CROSS_MAKE_VERSION }}
53-
restore-keys: musl-cross-make-
54-
55-
- name: Checkout musl-cross-make
56-
if: steps.compiler-cache.outputs.cache-hit != 'true'
57-
uses: actions/checkout@v4
58-
with:
59-
repository: pmmp/musl-cross-make
60-
path: musl-cross-make
61-
ref: ${{ env.MUSL_CROSS_MAKE_VERSION }}
62-
63-
- name: Build compiler
64-
if: steps.compiler-cache.outputs.cache-hit != 'true'
65-
working-directory: musl-cross-make
66-
run: |
67-
echo "TARGET = aarch64-linux-musl" > config.mak
68-
make -j$(nproc)
69-
make install
70-
mv ./output "${{ github.workspace }}/compiler"
71-
72-
- name: Compile PHP
73-
run: |
74-
export PATH="${{ github.workspace }}/compiler/bin:$PATH"
75-
76-
# Used "set -ex" instead of hashbang since script isn't executed with hashbang
77-
set -ex
78-
trap "exit 1" ERR
79-
./compile.sh -t android-aarch64 -x -j 4 -g -P ${{ inputs.pm-version-major }} -c ./download_cache -D -z ${{ inputs.php-version-base }}
80-
81-
82-
- name: Create tarball
83-
run: |
84-
tar -czf ./PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}.tar.gz bin
85-
tar -czf ./Z-PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}-debugging-symbols.tar.gz bin-debug
86-
87-
- name: Upload artifacts
88-
uses: actions/upload-artifact@v4
89-
if: always()
90-
with:
91-
name: PHP-${{ inputs.php-version-base }}-Android-PM${{ inputs.pm-version-major }}
92-
path: |
93-
./*PHP-${{ inputs.php-version-base }}-Android-arm64-PM${{ inputs.pm-version-major }}*.tar.gz
94-
install.log
95-
compile.sh
96-
if-no-files-found: error
97-
98-
- name: Prepare workspace for upload
99-
if: failure()
100-
run: tar -czf workspace.tar.gz install_data
101-
102-
- name: Upload workspace
103-
uses: actions/upload-artifact@v4
104-
if: failure()
105-
with:
106-
name: PHP-${{ inputs.php-version-base }}-Android-workspace-PM${{ inputs.pm-version-major }}
107-
path: |
108-
workspace.tar.gz
109-
if-no-files-found: error
110-
11124
linux:
11225
name: Linux
11326
runs-on: ubuntu-20.04
@@ -133,7 +46,7 @@ jobs:
13346
# Used "set -ex" instead of hashbang since script isn't executed with hashbang
13447
set -ex
13548
trap "exit 1" ERR
136-
./compile.sh -t linux64 -j 4 -g -P ${{ inputs.pm-version-major }} -c ./download_cache -D -z ${{ inputs.php-version-base }}
49+
./compile.sh -t linux64 -j 4 -g -F -P ${{ inputs.pm-version-major }} -c ./download_cache -D -z ${{ inputs.php-version-base }}
13750
13851
- name: Create tarball
13952
run: |
@@ -273,7 +186,7 @@ jobs:
273186

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

.github/workflows/main.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ jobs:
1717
strategy:
1818
matrix:
1919
include:
20-
- pm-version-major: 5
21-
php-version-base: "8.2"
22-
special-release: default-latest #default = best for PM5, latest = display as latest on GitHub
2320
- pm-version-major: 5
2421
php-version-base: "8.3"
22+
special-release: default-latest #default = best for PM5, latest = display as latest on GitHub
2523

2624
uses: ./.github/workflows/main-pm-matrix.yml
2725
with:

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bash script used to compile PHP on MacOS and Linux platforms. Make sure you have
4242
| -d | Compiles with debugging symbols and disables optimizations (slow, but useful for debugging segfaults) |
4343
| -D | Compiles with separated debugging symbols, but leaves optimizations enabled (used for distributed binaries) |
4444
| -g | Will compile GD2 |
45+
| -F | Will compile FFI |
4546
| -j | Set make threads to # |
4647
| -l | Uses the folder specified for caching compilation artifacts (useful for rapid rebuild and testing) |
4748
| -n | Don't remove sources after completing compilation |

0 commit comments

Comments
 (0)