File tree 1 file changed +18
-2
lines changed
1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,6 @@ jobs:
344
344
with :
345
345
submodules : true
346
346
347
- # This can be replaced by installing once brew ships SDL3
348
347
- name : Clone SDL3
349
348
run : git clone --depth 1 --branch release-$SDL3_VERSION https://github.com/libsdl-org/SDL.git
350
349
@@ -399,7 +398,6 @@ jobs:
399
398
with :
400
399
submodules : true
401
400
402
- # This can be replaced by installing once brew ships SDL3
403
401
- name : Clone SDL3
404
402
run : git clone --depth 1 --branch release-$SDL3_VERSION https://github.com/libsdl-org/SDL.git
405
403
@@ -478,3 +476,21 @@ jobs:
478
476
479
477
- name : Build (Release)
480
478
run : cmake --build release
479
+
480
+ freebsd-SDL3 :
481
+ name : FreeBSD (SDL3)
482
+ runs-on : ubuntu-latest
483
+ steps :
484
+ - uses : actions/checkout@v4
485
+ with :
486
+ submodules : true
487
+ - name : Build
488
+ uses :
cross-platform-actions/[email protected]
489
+ with :
490
+ operating_system : freebsd
491
+ version : ' 14.2'
492
+ run : |
493
+ sudo pkg update
494
+ sudo pkg install -y cmake ninja sdl3
495
+ cmake -B build -G Ninja . -DBUILD_SDL3=ON
496
+ cmake --build build --verbose -- -j`sysctl -n hw.ncpu`
You can’t perform that action at this time.
0 commit comments