Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/bullmq-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@ jobs:
node --version
npm --version
yarn --version
mkdir -p ${{github.workspace}}/build
mkdir -p $GITHUB_WORKSPACE/build
- name: Configure/Build
working-directory: ${{github.workspace}}/build
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
cd $GITHUB_WORKSPACE/build
cmake .. -DCMAKE_BUILD_TYPE=Debug -GNinja
ninja dragonfly
./dragonfly --alsologtostderr &
Expand All @@ -43,6 +41,6 @@ jobs:
yarn install --ignore-engines --frozen-lockfile --non-interactive
yarn build
- name: Test BullMQ
working-directory: ${{github.workspace}}/bullmq
run: |
cd $GITHUB_WORKSPACE/bullmq
# yarn test -i -g "should process delayed jobs with several workers respecting delay"
8 changes: 3 additions & 5 deletions .github/workflows/daily-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,14 @@ jobs:
- name: Install dependencies
run: |
cmake --version
mkdir -p ${{github.workspace}}/build
mkdir -p $GITHUB_WORKSPACE/build

- name: Configure & Build
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
working-directory: ${{github.workspace}}/build
run: |
cd $GITHUB_WORKSPACE/build
cmake .. -DCMAKE_BUILD_TYPE=Debug -GNinja -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ${{ matrix.flags }}
ninja src/all
- name: Test
working-directory: ${{github.workspace}}/build
run: |
cd $GITHUB_WORKSPACE/build
ctest -V -L DFLY