diff options
-rw-r--r-- | .github/actions/build-foo/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/build-foo/action.yml b/.github/actions/build-foo/action.yml index 3e50e67..1f246f8 100644 --- a/.github/actions/build-foo/action.yml +++ b/.github/actions/build-foo/action.yml @@ -18,7 +18,7 @@ runs: if ('${{ matrix.platform }}' -eq 'x86') { $flags += '-m32' } - $flags += '-std=c++14','-o','foo','foo.cpp' + $flags += '-std=c++11','-o','foo','foo.cpp' if ('${{ runner.os }}' -eq 'Linux') { $flags += '-lpthread' } |