Skip to content

Commit

Permalink
Re-enable ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
hassandraga committed Jun 19, 2024
1 parent 7510e8a commit 9c2bc75
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/linux_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
strategy:
matrix:
include:
# - cc: gcc
# arch: arm64
- cc: gcc
arch: arm64
- cc: gcc
arch: arm
fail-fast: false
Expand Down Expand Up @@ -83,6 +83,7 @@ jobs:
- name: Build TLS Release Target WEBUI_TLS_INCLUDE="/usr/arm-linux-gnueabi/include" WEBUI_TLS_LIB="/usr/arm-linux-gnueabi/lib"
run: make WEBUI_USE_TLS=1
- name: Build Examples
if: matrix.cc == 'arm64'
run: |
examples_base_dir=$(pwd)/examples/C
for example in $(find $examples_base_dir/* -maxdepth 0 -type d); do
Expand All @@ -101,15 +102,18 @@ jobs:
done
exit $exit_code
- name: Setup Browser
if: matrix.cc == 'arm64'
uses: browser-actions/setup-chrome@v1
- name: Setup Tests
if: matrix.cc == 'arm64'
run: |
sudo apt update && sudo apt install xvfb
cd tests
make call_c_from_js.c
make fail_test.c
ls -1
- name: Test Static
if: matrix.cc == 'arm64'
timeout-minutes: 2
run: |
cd tests
Expand All @@ -121,6 +125,7 @@ jobs:
[[ "$output" == *"Hello from the backend!"* ]] && true || exit 1
xvfb-run --auto-servernum --server-num=1 "$fail_test" && exit 1 || true
- name: Test Dynamic
if: matrix.cc == 'arm64'
timeout-minutes: 2
run: |
cd tests
Expand Down

0 comments on commit 9c2bc75

Please sign in to comment.