Skip to content

Commit

Permalink
Add test for ARM64 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghaoz committed Jul 15, 2023
1 parent 7936a47 commit 3ab80cb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 2.1

jobs:
test-arm64:
machine:
image: ubuntu-2004:current
resource_class: arm.large
steps:
- checkout
- run:
name: Install dependencies
command: |
sudo apt-get update
sudo apt-get install -y clang
- run:
name: Install GOAT
command: go install .
- run:
name: Run tests
command: |
for file in tests/*.c; do
goat $file -O3 -mavx -mfma
done
workflows:
test:
jobs:
- test-arm64

0 comments on commit 3ab80cb

Please sign in to comment.