Skip to content

Commit

Permalink
CI: Fix grammar and mark MacOS workflow as aarch64 not amd64
Browse files Browse the repository at this point in the history
Looks like GitHub now uses aarch64 machines for MacOS workflows according
to this document:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#standard-github-hosted-runners-for-public-repositories

Signed-off-by: Mobin Aydinfar <mobin@mobintestserver.ir>
  • Loading branch information
mobin-2008 committed Jul 24, 2024
1 parent 6202845 commit 7cb8590
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/regular_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ jobs:
fail-fast: false # Upload src/igr-tests/*/output/* files in igr-tests
matrix:
include:
- arch: 'amd64'
- arch: 'aarch64'

steps:
- uses: actions/checkout@v4
# on MacOS, g++ symlinked to clang++
# We must verify that
- name: Verify g++ (it is g++ or clang++?)
- name: Verify g++ (is it g++ or clang++?)
run: g++ --version
- name: Print g++ architecture
run: g++ -dumpmachine
Expand Down

0 comments on commit 7cb8590

Please sign in to comment.