mirror of
https://github.com/vsariola/sointu.git
synced 2025-05-28 03:10:24 -04:00
fix(CI): Cgo linker flags stopped working.
They caused the tests to fail completely, but without them, the builds only give some warnings. So disabling them for now.
This commit is contained in:
parent
95c8c9c2b7
commit
e2c6d4b70c
5
.github/workflows/tests.yml
vendored
5
.github/workflows/tests.yml
vendored
@ -34,7 +34,10 @@ jobs:
|
||||
maker: ninja
|
||||
asmnasm: /Users/runner/nasm/nasm
|
||||
gotests: yes
|
||||
cgo_ldflags: -Wl,-no_pie # ld on mac is complaining about position dependent code
|
||||
cgo_ldflags: # -Wl,-no_pie
|
||||
# ld on mac is complaining about position dependent code so this would take the errors away, BUT
|
||||
# suddenly this causes an error, even though worked last week. Let's accept the warnings rather
|
||||
# than let the tests fail because of this.
|
||||
# TODO: win32 builds didn't quite work out, complains gcc broken
|
||||
steps:
|
||||
- uses: lukka/get-cmake@v3.18.3
|
||||
|
Loading…
Reference in New Issue
Block a user