File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 27
27
yarn --version
28
28
mkdir -p ${{github.workspace}}/build
29
29
- name : Configure/Build
30
- working-directory : ${{github.workspace}}/build
31
- # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
32
- # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
33
30
run : |
31
+ cd ${{github.workspace}}/build
34
32
cmake .. -DCMAKE_BUILD_TYPE=Debug -GNinja
35
33
ninja dragonfly
36
34
./dragonfly --alsologtostderr &
43
41
yarn install --ignore-engines --frozen-lockfile --non-interactive
44
42
yarn build
45
43
- name : Test BullMQ
46
- working-directory : ${{github.workspace}}/bullmq
47
44
run : |
45
+ cd ${{github.workspace}}/bullmq
48
46
# yarn test -i -g "should process delayed jobs with several workers respecting delay"
Original file line number Diff line number Diff line change @@ -42,13 +42,11 @@ jobs:
42
42
mkdir -p ${{github.workspace}}/build
43
43
44
44
- name : Configure & Build
45
- # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
46
- # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
47
- working-directory : ${{github.workspace}}/build
48
45
run : |
46
+ cd ${{github.workspace}}/build
49
47
cmake .. -DCMAKE_BUILD_TYPE=Debug -GNinja -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ${{ matrix.flags }}
50
48
ninja src/all
51
49
- name : Test
52
- working-directory : ${{github.workspace}}/build
53
50
run : |
51
+ cd ${{github.workspace}}/build
54
52
ctest -V -L DFLY
You can’t perform that action at this time.
0 commit comments