From: Bimba Shrestha Date: Thu, 18 Jun 2020 18:52:40 +0000 (-0700) Subject: adding arm to actions X-Git-Tag: v1.4.7~135^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d6e4a297804dadc8e297ac579384c60adb35677;p=thirdparty%2Fzstd.git adding arm to actions --- diff --git a/.github/workflows/generic-dev.yml b/.github/workflows/generic-dev.yml index 785136391..e0e2e0fd7 100644 --- a/.github/workflows/generic-dev.yml +++ b/.github/workflows/generic-dev.yml @@ -9,12 +9,10 @@ jobs: # Dev PR jobs that still have to be migrated from travis # # icc (need self-hosted) -# arm/qemu-arm (need self-hosted) # versionTag # valgrindTest (keeps failing for some reason. need investigation) # staticAnalyze (need trusty so need self-hosted) # pcc-fuzz: (need trusty so need self-hosted) -# arm-build-test (need self-hosted) # # setting up self-hosted is pretty straightforward, but # I need admins permissions to the repo for that it looks like @@ -171,6 +169,24 @@ 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 + 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 + + 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 + bourne-shell: runs-on: ubuntu-latest steps: