aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index cb82575..3373d8d 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -52,7 +52,6 @@ jobs:
if: matrix.cygwin
- name: Set up Clang
- id: setup
uses: ./
with:
platform: '${{ matrix.platform }}'
@@ -65,16 +64,14 @@ jobs:
$flags += '-m32'
}
$flags += @(
- '-x', 'c++',
'-std=c++14',
'-o', 'foo.exe',
- 'foo.cpp',
- '-lstdc++'
+ 'foo.cpp'
)
if ('${{ runner.os }}' -eq 'Linux') {
$flags += '-lpthread'
}
- & '${{ steps.setup.outputs.clangxx }}' $flags
+ clang++ $flags
- name: Run foo.exe
run: |