Skip to content

Commit

Permalink
[ci] Add ARM tests back into CI
Browse files Browse the repository at this point in the history
  • Loading branch information
senhuang42 committed May 17, 2021
1 parent 40def70 commit 5a75417
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 23 deletions.
34 changes: 16 additions & 18 deletions .github/workflows/generic-dev.yml
Expand Up @@ -171,25 +171,23 @@ jobs:
sudo apt-get install gcc-mingw-w64
CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ CFLAGS="-Werror -O1" make zstd
# TODO: Broken test - fix and uncomment
# armbuild:
# runs-on: ubuntu-16.04 # doesn't work on latest
# steps:
# - uses: actions/checkout@v2
# - name: ARM Build Test
# run: |
# make arminstall
# make armbuild
armbuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ARM Build Test
run: |
make arminstall
make armbuild
# TODO: Broken test - fix and uncomment
# armfuzz:
# runs-on: ubuntu-16.04 # doesn't work on latest
# steps:
# - uses: actions/checkout@v2
# - name: Qemu ARM emulation + Fuzz Test
# run: |
# make arminstall
# make armfuzz
armfuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Qemu ARM emulation + Fuzz Test
run: |
make arminstall
make armfuzz
bourne-shell:
runs-on: ubuntu-latest
Expand Down
5 changes: 0 additions & 5 deletions .travis.yml
Expand Up @@ -55,11 +55,6 @@ matrix:
- make clean
- make -C tests test-fuzzer-stackmode

- name: Qemu ARM emulation + Fuzz Test # ~13.5mn
script:
- make arminstall
- make armfuzz

# Introduced to check compat with old toolchains, to prevent e.g. #1872
- name: ARM Build Test (on Trusty)
dist: trusty
Expand Down

0 comments on commit 5a75417

Please sign in to comment.