diff --git a/.github/workflows/mbtserver.yml b/.github/workflows/mbtserver.yml index f267e60..b941ca9 100644 --- a/.github/workflows/mbtserver.yml +++ b/.github/workflows/mbtserver.yml @@ -22,6 +22,10 @@ jobs: steps: - name: IRC notification of starting the builds uses: LanguageMachines/ticcactions/irc-init@v1 + - name: Cancel Previous Runs + uses: styfle/cancel-workflow-action@0.12.1 + with: + access_token: ${{ github.token }} build: runs-on: ${{ matrix.os }} @@ -32,18 +36,6 @@ jobs: compiler: [g++-12, clang++] steps: - - name: exclude Mac-OS with g++ - shell: bash - if: ${{ matrix.os == 'macos-latest' && matrix.compiler == 'g++-12' }} - run: | - echo "action_status=skip" >> $GITHUB_ENV - echo "action_details='c++ library issues'" >> $GITHUB_ENV - - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.12.1 - with: - access_token: ${{ github.token }} - - uses: actions/checkout@v4.1.1 - uses: LanguageMachines/ticcactions/cpp-build-env@v1