File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 18
18
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
19
19
runs-on : macos-latest
20
20
21
- continue-on-error : true
22
-
23
21
steps :
24
22
- uses : actions/checkout@v3
25
23
@@ -60,12 +58,14 @@ jobs:
60
58
run : |
61
59
cd src
62
60
cmake -B ${{github.workspace}}/src/build -DQTVERSION=QT6 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
61
+ continue-on-error : true
63
62
64
63
- name : Build
65
64
# Build your program with the given configuration
66
65
run : |
67
66
cd src
68
67
cmake --build ${{github.workspace}}/src/build --config ${{env.BUILD_TYPE}} --target seergdb --parallel 1
68
+ continue-on-error : true
69
69
70
70
- name : List Objs
71
71
# Build your program with the given configuration
You can’t perform that action at this time.
0 commit comments