mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 16:24:27 +01:00
Fix error with CI
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
parent
e3084efc93
commit
3d5142d6ad
43
.github/workflows/main.yml
vendored
43
.github/workflows/main.yml
vendored
@ -18,21 +18,35 @@ jobs:
|
|||||||
name: base
|
name: base
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: "recursive"
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: make base
|
uses: nick-fields/retry@v2
|
||||||
|
with:
|
||||||
|
timeout_seconds: 20
|
||||||
|
max_attempts: 5
|
||||||
|
retry_on: error
|
||||||
|
command: make base
|
||||||
|
|
||||||
- name: test
|
- name: test
|
||||||
run: make base.test
|
run: make base.test
|
||||||
|
|
||||||
- name: archive base
|
- name: archive base
|
||||||
run: |
|
run: |
|
||||||
mkdir -p cache
|
mkdir -p cache
|
||||||
docker save dockcross/base:latest | xz -e9 -T0 > ./cache/base.tar.xz
|
docker save dockcross/base:latest | xz -e9 -T0 > ./cache/base.tar.xz
|
||||||
|
|
||||||
- name: save base
|
- name: save base
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: cache
|
name: cache
|
||||||
path: ./cache
|
path: ./cache
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
- name: deploy
|
- name: deploy
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
run: |
|
run: |
|
||||||
@ -833,17 +847,31 @@ jobs:
|
|||||||
cpython_arg: "",
|
cpython_arg: "",
|
||||||
}
|
}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: "recursive"
|
||||||
|
fetch-depth: 1
|
||||||
|
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: cache
|
name: cache
|
||||||
path: ./cache
|
path: ./cache
|
||||||
|
|
||||||
- name: load base
|
- name: load base
|
||||||
run: xz -d -k < ./cache/base.tar.xz | docker load
|
run: xz -d -k < ./cache/base.tar.xz | docker load
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
run: make ${{ matrix.arch_name.image }}
|
uses: nick-fields/retry@v2
|
||||||
|
with:
|
||||||
|
timeout_seconds: 20
|
||||||
|
max_attempts: 5
|
||||||
|
retry_on: error
|
||||||
|
command: make ${{ matrix.arch_name.image }}
|
||||||
|
|
||||||
- name: basic test
|
- name: basic test
|
||||||
run: make ${{ matrix.arch_name.image }}.test
|
run: make ${{ matrix.arch_name.image }}.test
|
||||||
|
|
||||||
# Updated on 28/08/2021
|
# Updated on 28/08/2021
|
||||||
- name: stockfish build test
|
- name: stockfish build test
|
||||||
if: ${{ matrix.arch_name.stockfish == 'yes' }}
|
if: ${{ matrix.arch_name.stockfish == 'yes' }}
|
||||||
@ -854,6 +882,7 @@ jobs:
|
|||||||
./../../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} build ${{ matrix.arch_name.stockfish_arg }} -j2
|
./../../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} build ${{ matrix.arch_name.stockfish_arg }} -j2
|
||||||
cd ../..
|
cd ../..
|
||||||
rm -rf Stockfish
|
rm -rf Stockfish
|
||||||
|
|
||||||
# Updated on 28/08/2021
|
# Updated on 28/08/2021
|
||||||
- name: ninja build test
|
- name: ninja build test
|
||||||
if: ${{ matrix.arch_name.ninja == 'yes' }}
|
if: ${{ matrix.arch_name.ninja == 'yes' }}
|
||||||
@ -861,6 +890,7 @@ jobs:
|
|||||||
git clone --depth 1 --branch v1.10.2 https://github.com/ninja-build/ninja.git
|
git clone --depth 1 --branch v1.10.2 https://github.com/ninja-build/ninja.git
|
||||||
cd ninja
|
cd ninja
|
||||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.ninja_arg }}
|
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.ninja_arg }}
|
||||||
|
|
||||||
# Updated on 28/08/2021
|
# Updated on 28/08/2021
|
||||||
- name: openssl build test
|
- name: openssl build test
|
||||||
if: ${{ matrix.arch_name.openssl == 'yes' }}
|
if: ${{ matrix.arch_name.openssl == 'yes' }}
|
||||||
@ -873,6 +903,7 @@ jobs:
|
|||||||
./../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} -j2
|
./../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} -j2
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf openssl
|
rm -rf openssl
|
||||||
|
|
||||||
# Updated on 28/08/2021
|
# Updated on 28/08/2021
|
||||||
- name: C build test
|
- name: C build test
|
||||||
if: ${{ matrix.arch_name.C == 'yes' }}
|
if: ${{ matrix.arch_name.C == 'yes' }}
|
||||||
@ -883,6 +914,7 @@ jobs:
|
|||||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.C_arg }}
|
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.C_arg }}
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf C
|
rm -rf C
|
||||||
|
|
||||||
# Updated on 28/08/2021
|
# Updated on 28/08/2021
|
||||||
- name: C-Plus-Plus build test
|
- name: C-Plus-Plus build test
|
||||||
if: ${{ matrix.arch_name.C-Plus-Plus == 'yes' }}
|
if: ${{ matrix.arch_name.C-Plus-Plus == 'yes' }}
|
||||||
@ -893,6 +925,7 @@ jobs:
|
|||||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.C-Plus-Plus_arg }}
|
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.C-Plus-Plus_arg }}
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf C-Plus-Plus
|
rm -rf C-Plus-Plus
|
||||||
|
|
||||||
# Updated on 28/08/2021
|
# Updated on 28/08/2021
|
||||||
- name: fmt build test
|
- name: fmt build test
|
||||||
if: ${{ matrix.arch_name.fmt == 'yes' }}
|
if: ${{ matrix.arch_name.fmt == 'yes' }}
|
||||||
@ -902,6 +935,7 @@ jobs:
|
|||||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.fmt_arg }} -DFMT_DOC=OFF
|
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.fmt_arg }} -DFMT_DOC=OFF
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf fmt
|
rm -rf fmt
|
||||||
|
|
||||||
# Updated on 05/10/2021
|
# Updated on 05/10/2021
|
||||||
- name: cpython build test
|
- name: cpython build test
|
||||||
if: ${{ matrix.arch_name.cpython == 'yes' }}
|
if: ${{ matrix.arch_name.cpython == 'yes' }}
|
||||||
@ -912,6 +946,7 @@ jobs:
|
|||||||
./../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} -j2
|
./../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} -j2
|
||||||
cd ..
|
cd ..
|
||||||
rm -rf cpython
|
rm -rf cpython
|
||||||
|
|
||||||
- name: deploy
|
- name: deploy
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user