From 0b08ca49820fc9f9645426237e9fe48a8c0c9a1c Mon Sep 17 00:00:00 2001 From: Mobin Aydinfar Date: Wed, 24 Jul 2024 12:04:03 +0330 Subject: [PATCH] CI: Fix grammar and mark MacOS workflow as aarch64 not amd64 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 --- .github/workflows/regular_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/regular_ci.yml b/.github/workflows/regular_ci.yml index 514bd51e..b5f9fd73 100644 --- a/.github/workflows/regular_ci.yml +++ b/.github/workflows/regular_ci.yml @@ -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