From ae8ee6621b76432b2fcaf78927f0985fcee5b652 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 3 Jul 2021 01:32:22 +0300 Subject: actions/build-foo: -std=c++11 instead of c++14 --- .github/actions/build-foo/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' } -- cgit v1.2.3