From 8e055a5a61e3822faa9cc688f62323463d1037e9 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Sat, 26 Apr 2025 01:29:39 +0200 Subject: [PATCH] update workflow --- .github/workflows/build.yaml | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9fc5fa78..b484d399 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -23,13 +23,11 @@ jobs: - os: ubuntu-latest compiler: llvm - # Failing - #- os: macos-latest - #compiler: llvm + - os: macos-latest + compiler: llvm - # Failing - #- os: macos-latest - #compiler: gcc + - os: macos-latest + compiler: gcc - os: windows-latest compiler: cl @@ -39,15 +37,6 @@ jobs: - name: "Checkout repository" uses: actions/checkout@v3 - - name: "Setup Cpp" - uses: aminya/setup-cpp@v1 - with: - compiler: ${{ matrix.compiler }} - vcvarsall: ${{ contains(matrix.os, 'windows' )}} - - - name: "Install Bazel" - uses: bazel-contrib/setup-bazel@0.14.0 - - name: "Build with Bazel" run: bazel build ...