diff --git a/.github/workflows/build-macosx-aarch64.yml b/.github/workflows/build-macosx-aarch64.yml index 38e5c95c5..9dc8c0cd4 100644 --- a/.github/workflows/build-macosx-aarch64.yml +++ b/.github/workflows/build-macosx-aarch64.yml @@ -16,9 +16,6 @@ concurrency: jobs: build: runs-on: macos-14 - include: - - compiler: gcc - gcc: 11 steps: - uses: actions/checkout@v4 with: @@ -69,8 +66,8 @@ jobs: luarocks config --scope=system -- variables.LIBFLAG "-bundle -undefined dynamic_lookup -all_load -std=c++11" - name: Install `tree-sitter-norg` Package env: - CC: gcc-${{ matrix.gcc }} - CXX: g++-${{ matrix.gcc }} + CC: clang + CXX: clang++ run: | luarocks --verbose --local --lua-version=5.1 install tree-sitter-norg luarocks --verbose pack tree-sitter-norg diff --git a/.github/workflows/build-macosx-x86_64.yml b/.github/workflows/build-macosx-x86_64.yml index d51b26a6a..cddeb77eb 100644 --- a/.github/workflows/build-macosx-x86_64.yml +++ b/.github/workflows/build-macosx-x86_64.yml @@ -16,9 +16,6 @@ concurrency: jobs: build: runs-on: macos-11 - include: - - compiler: gcc - gcc: 11 steps: - uses: actions/checkout@v4 with: @@ -69,8 +66,8 @@ jobs: luarocks config --scope=system -- variables.LIBFLAG "-bundle -undefined dynamic_lookup -all_load -std=c++11" - name: Install `tree-sitter-norg` Package env: - CC: gcc-${{ matrix.gcc }} - CXX: g++-${{ matrix.gcc }} + CC: clang + CXX: clang++ run: | luarocks --verbose --local --lua-version=5.1 install tree-sitter-norg luarocks --verbose pack tree-sitter-norg