Merge pull request #2284 from terrelln/github-actions-arm

[github actions] Disable armbuild and armfuzz tests
This commit is contained in:
Yann Collet 2020-08-25 17:50:12 -07:00 committed by GitHub
commit eef88dcfea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,23 +155,25 @@ jobs:
sudo apt-get install gcc-mingw-w64 sudo apt-get install gcc-mingw-w64
CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ CFLAGS="-Werror -O1" make zstd CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ CFLAGS="-Werror -O1" make zstd
armbuild: # TODO: Broken test - fix and uncomment
runs-on: ubuntu-16.04 # doesn't work on latest # armbuild:
steps: # runs-on: ubuntu-16.04 # doesn't work on latest
- uses: actions/checkout@v2 # steps:
- name: ARM Build Test # - uses: actions/checkout@v2
run: | # - name: ARM Build Test
make arminstall # run: |
make armbuild # make arminstall
# make armbuild
armfuzz: # TODO: Broken test - fix and uncomment
runs-on: ubuntu-16.04 # doesn't work on latest # armfuzz:
steps: # runs-on: ubuntu-16.04 # doesn't work on latest
- uses: actions/checkout@v2 # steps:
- name: Qemu ARM emulation + Fuzz Test # - uses: actions/checkout@v2
run: | # - name: Qemu ARM emulation + Fuzz Test
make arminstall # run: |
make armfuzz # make arminstall
# make armfuzz
bourne-shell: bourne-shell:
runs-on: ubuntu-latest runs-on: ubuntu-latest