Spaces:
Sleeping
Sleeping
ci : disable freeBSD job in build.yml (#3064)
Browse filesThis 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 +17 -17
.github/workflows/build.yml
CHANGED
|
@@ -200,23 +200,23 @@ jobs:
|
|
| 200 |
cmake --build build --config Release -j $(sysctl -n hw.logicalcpu)
|
| 201 |
|
| 202 |
|
| 203 |
-
freeBSD-latest:
|
| 204 |
-
runs-on: macos-13
|
| 205 |
-
|
| 206 |
-
steps:
|
| 207 |
-
- name: Clone
|
| 208 |
-
uses: actions/checkout@v4
|
| 209 |
-
|
| 210 |
-
- name: Build
|
| 211 |
-
uses: cross-platform-actions/[email protected]
|
| 212 |
-
with:
|
| 213 |
-
operating_system: freebsd
|
| 214 |
-
version: '14.2'
|
| 215 |
-
run: |
|
| 216 |
-
sudo pkg update
|
| 217 |
-
sudo pkg install -y gmake sdl2 cmake git
|
| 218 |
-
cmake -B build
|
| 219 |
-
cmake --build build --config Release
|
| 220 |
|
| 221 |
ubuntu-22-gcc:
|
| 222 |
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||
|
|
|
|
| 200 |
cmake --build build --config Release -j $(sysctl -n hw.logicalcpu)
|
| 201 |
|
| 202 |
|
| 203 |
+
# freeBSD-latest:
|
| 204 |
+
# runs-on: macos-13
|
| 205 |
+
#
|
| 206 |
+
# steps:
|
| 207 |
+
# - name: Clone
|
| 208 |
+
# uses: actions/checkout@v4
|
| 209 |
+
#
|
| 210 |
+
# - name: Build
|
| 211 |
+
# uses: cross-platform-actions/[email protected]
|
| 212 |
+
# with:
|
| 213 |
+
# operating_system: freebsd
|
| 214 |
+
# version: '14.2'
|
| 215 |
+
# run: |
|
| 216 |
+
# sudo pkg update
|
| 217 |
+
# sudo pkg install -y gmake sdl2 cmake git
|
| 218 |
+
# cmake -B build
|
| 219 |
+
# cmake --build build --config Release
|
| 220 |
|
| 221 |
ubuntu-22-gcc:
|
| 222 |
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||
|