File tree 3 files changed +21
-21
lines changed
3 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
jobs :
3
- build :
3
+ build-ubuntu-18.04 :
4
4
docker :
5
5
- image : heliconwave/circleci-ubuntu-18.04:latest
6
6
steps :
34
34
paths :
35
35
- Debug
36
36
- Release
37
- build-16.04 :
37
+ build-ubuntu- 16.04 :
38
38
docker :
39
39
- image : heliconwave/circleci-ubuntu-16.04:latest
40
40
steps :
76
76
# - run:
77
77
# name: Build CMake WebAssembly
78
78
# command: cd /root/project && em++ --version && pwd && rm -rf build/ && mkdir build && cd build/ && emcmake cmake -DCMAKE_CXX_STANDARD=11 -DENABLE_TESTS=OFF -DENABLE_WEBASSEMBLY=ON .. && cmake --build . -- -j$(nproc)
79
- test-unit :
79
+ test-unit-u18.04 :
80
80
docker :
81
81
- image : heliconwave/circleci-ubuntu-18.04:latest
82
82
working_directory : ~/project
87
87
- run :
88
88
name : Run CTest
89
89
command : pwd && ls -ltrha && cd Debug/ && make unit-tests
90
- test-unit-16 .04 :
90
+ test-unit-u16 .04 :
91
91
docker :
92
92
- image : heliconwave/circleci-ubuntu-16.04:latest
93
93
working_directory : ~/project
@@ -133,21 +133,21 @@ workflows:
133
133
version : 2
134
134
build-test-and-deploy :
135
135
jobs :
136
- - build
137
- - build-16.04
136
+ - build-ubuntu-18.04
137
+ - build-ubuntu- 16.04
138
138
# - build-webassembly
139
- - test-unit :
139
+ - test-unit-u18.04 :
140
140
requires :
141
- - build
142
- - test-unit-16 .04 :
141
+ - build-ubuntu-18.04
142
+ - test-unit-u16 .04 :
143
143
requires :
144
- - build-16.04
144
+ - build-ubuntu- 16.04
145
145
- test-component :
146
146
requires :
147
- - build
147
+ - build-ubuntu-18.04
148
148
- test-benchmark :
149
149
requires :
150
- - build
150
+ - build-ubuntu-18.04
151
151
- test-memcheck :
152
152
requires :
153
- - build
153
+ - build-ubuntu-18.04
Original file line number Diff line number Diff line change 8
8
runs-on : ${{ matrix.os }}
9
9
strategy :
10
10
matrix :
11
- os : [macos-latest, windows-latest]
11
+ os : [macos-latest, windows-latest, ubuntu-22.04 ]
12
12
steps :
13
13
- uses : actions/checkout@v1
14
14
- name : check versions
Original file line number Diff line number Diff line change @@ -131,13 +131,13 @@ endif()
131
131
#-------------------
132
132
# compiler settings
133
133
#-------------------
134
- if (NOT ENABLE_WEBASSEMBLY)
135
- if (UNIX AND NOT APPLE )
136
- add_compile_options (-Wuseless-cast # warn if you perform a cast to the same type
137
- -Werror # Make the specified warning into an error.
138
- )
139
- endif ()
140
- endif ()
134
+ # if(NOT ENABLE_WEBASSEMBLY)
135
+ # if (UNIX AND NOT APPLE)
136
+ # add_compile_options(-Wuseless-cast # warn if you perform a cast to the same type
137
+ # -Werror # Make the specified warning into an error.
138
+ # )
139
+ # endif()
140
+ # endif()
141
141
142
142
if (MSVC )
143
143
add_compile_options (/W4)
You can’t perform that action at this time.
0 commit comments