chore: use xz
compress
#13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [master] | |
name: Test this action | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
build: [false, true] | |
variant: [richfelker/musl-cross-make, userdocs/qbt-musl-cross-make] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Download aarch64 cross compiler | |
uses: ./ | |
id: compiler | |
with: | |
target: aarch64-linux-musl | |
variant: ${{ matrix.variant }} | |
build: ${{ matrix.build }} | |
- name: Install deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y make autoconf automake libtool-bin m4 wget gzip bzip2 bison g++ re2c | |
- name: Build project | |
run: | | |
echo ${{ steps.compiler.outputs.path }} | |
ls ${{ steps.compiler.outputs.path }} | |
wget https://raw.githubusercontent.com/pmmp/PHP-Binaries/master/compile.sh | |
chmod a+x compile.sh | |
./compile.sh -t android-aarch64 -x -j4 -P5 -s |