diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cd32e53..ffffe70 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,16 +63,14 @@ jobs: $flags += '-m32' } $flags += @( - '-x', 'c++', '-std=c++14', '-o', 'foo', - 'foo.cpp', - '-lstdc++' + 'foo.cpp' ) if ('${{ runner.os }}' -eq 'Linux') { $flags += '-lpthread' } - & g++ $flags + g++ $flags - name: Run foo.exe run: | |