File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ name: C++ CI
33on : [push]
44
55jobs :
6- build-ubuntu-gcc-15 :
6+ build-ubuntu-gcc-14 :
77 runs-on : ubuntu-latest
88 strategy :
99 matrix :
1010 config :
1111 - {compiler-options: "-Wall -Wextra -std=c++20"}
1212 - {compiler-options: "-Wall -Wextra -Wno-sign-compare -std=c++2c"}
13- - {compiler-options: "-fanalyzer -Wno-analyzer-null-dereference -std=c++23 "}
13+ - {compiler-options: "-fanalyzer -Wno-analyzer-null-dereference -std=c++26 "}
1414 steps :
1515 - uses : actions/checkout@v2
1616 # - name: install g++
@@ -37,15 +37,15 @@ jobs:
3737 - name : compile
3838 run : |
3939 cd cpp
40- find . -name '*.cpp' -print0 | xargs -n1 -0 clang++-20 -Wall -Wextra -std=c++2c
40+ find . -name '*.cpp' -print0 | xargs -n1 -0 clang++-20 -Wall -Wextra -std=c++26
4141
4242 build-macos-clang :
4343 runs-on : macos-latest
4444 strategy :
4545 matrix :
4646 config :
4747 - {compiler-options: "-Wall -Wextra -std=c++2c -isystem"}
48- - {compiler-options: "-Wall -Wextra -Wno-sign-compare -std=c++23 -isystem"}
48+ - {compiler-options: "-Wall -Wextra -Wno-sign-compare -std=c++2c -isystem"}
4949 steps :
5050 - uses : actions/checkout@v2
5151 - name : compile
7979 cd cpp
8080 mkdir bits
8181 C:\msys64\usr\bin\echo.exe -e '#include \74vector\76\n#include \74set\76\n#include \74map\76\n#include \74unordered_set\76\n#include \74unordered_map\76\n#include \74queue\76\n#include \74deque\76\n#include \74stack\76\n#include \74iostream\76\n#include \74iomanip\76\n#include \74complex\76\n#include \74cassert\76\n#include \74random\76\n#include \74chrono\76\n#include \74functional\76\n#include \74array\76\n#include \74bitset\76\n#include \74numeric\76\n' > bits\stdc++.h
82- C:\msys64\usr\bin\find . -name '*.cpp' -print0 | C:\msys64\usr\bin\xargs -n1 -0 cl //std:c++23 //EHsc //I .
82+ C:\msys64\usr\bin\find . -name '*.cpp' -print0 | C:\msys64\usr\bin\xargs -n1 -0 cl //std:c++20 //EHsc //I .
You can’t perform that action at this time.
0 commit comments