-
Notifications
You must be signed in to change notification settings - Fork 982
56 lines (52 loc) · 1.63 KB
/
bullmq-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# These tests are disabled until Dragonfly works well with BullMQ.
name: bullmq-tests
on:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Build
timeout-minutes: 60
container:
image: ghcr.io/romange/alpine-dev:latest
options: --security-opt seccomp=unconfined
credentials:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install NodeJs
run: |
apk add --no-cache nodejs npm yarn jq
node --version
npm --version
yarn --version
mkdir -p $GITHUB_WORKSPACE/build
- name: Configure/Build
run: |
cd $GITHUB_WORKSPACE/build
cmake .. -DCMAKE_BUILD_TYPE=Debug -GNinja
ninja dragonfly
./dragonfly --alsologtostderr --cluster_mode=emulated --lock_on_hashtags --dbfilename= &
- name: Build and Test BullMQ
run: |
DOWNLOAD_URL=$(curl -s https://api.github.com/repos/taskforcesh/bullmq/releases/latest | jq -r '.tarball_url')
echo "Downloading latest BullMQ release from ${DOWNLOAD_URL}"
wget -O bullmq.tar.gz ${DOWNLOAD_URL}
tar -zxvf bullmq.tar.gz
mv taskforcesh-bullmq-* bullmq
cd bullmq
pwd
yarn install
yarn build
BULLMQ_TEST_PREFIX={b} yarn test
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: unit_logs
path: /tmp/dragonfly.*