From 1e763af1a631f03ee6c978e879d18525436534cb Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 22 Apr 2025 06:38:16 +0200 Subject: [PATCH] ci : disable freeBSD job in build.yml This commit disables the FreeBSD job in build.yml of the GitHub Actions workflow. The motivation for this is that this job seems to stall and timeout from time to time, taking up to 6 hours to complete/cancel. --- .github/workflows/build.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 790a5d200c0..a8e3a955532 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -200,23 +200,23 @@ jobs: cmake --build build --config Release -j $(sysctl -n hw.logicalcpu) - freeBSD-latest: - runs-on: macos-13 - - steps: - - name: Clone - uses: actions/checkout@v4 - - - name: Build - uses: cross-platform-actions/action@v0.27.0 - with: - operating_system: freebsd - version: '14.2' - run: | - sudo pkg update - sudo pkg install -y gmake sdl2 cmake git - cmake -B build - cmake --build build --config Release +# freeBSD-latest: +# runs-on: macos-13 +# +# steps: +# - name: Clone +# uses: actions/checkout@v4 +# +# - name: Build +# uses: cross-platform-actions/action@v0.27.0 +# with: +# operating_system: freebsd +# version: '14.2' +# run: | +# sudo pkg update +# sudo pkg install -y gmake sdl2 cmake git +# cmake -B build +# cmake --build build --config Release ubuntu-22-gcc: if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||