Skip to content

Commit d60ac1a

Browse files
committed
Fix FreeBSD github action
1 parent 5dca686 commit d60ac1a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ jobs:
310310
# }}}
311311
# {{{ FreeBSD
312312
freebsd:
313-
if: github.ref == 'refs/heads/master'
314-
runs-on: macos-12
313+
# if: github.ref == 'refs/heads/master'
314+
runs-on: ubuntu-latest
315315
name: FreeBSD 13
316316
# env:
317317
# MYTOKEN: "value1"
@@ -341,7 +341,7 @@ jobs:
341341
./build/src/crispy/crispy_test
342342
./build/src/vtparser/vtparser_test
343343
./build/src/vtbackend/vtbackend_test
344-
./build/src/vtbackend/vtrasterizer_test
344+
./build/src/vtrasterizer/vtrasterizer_tes
345345
rm -rf _deps build
346346
# }}}
347347
# {{{ OS/X

scripts/install-deps.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ main()
575575
Darwin)
576576
install_deps_darwin
577577
;;
578-
FreeBSD)
578+
FreeBSD|freebsd)
579579
install_deps_FreeBSD
580580
;;
581581
*)

src/vtrasterizer/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ if(CONTOUR_TESTING)
2626
target_link_libraries(vtrasterizer_test vtrasterizer Catch2::Catch2WithMain)
2727
add_test(vtrasterizer_test ./vtrasterizer_test)
2828
endif()
29+
30+
message(STATUS "[vtrasterizer] Compile unit tests: ${CONTOUR_TESTINGG}")

0 commit comments

Comments
 (0)