-
Notifications
You must be signed in to change notification settings - Fork 15
45 lines (36 loc) · 1.09 KB
/
unit-test-nightly.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
name: Unit tests nightly
on:
schedule:
- cron: '0 5 * * *' # Runs every day at 5 AM
workflow_dispatch:
jobs:
unit-tests-with-log:
name: Unit tests with log nightly
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: false
- name: Print Go version
run: go version
- name: Run unit tests with logger (level trace)
run: |
CI_UNIT_TESTS_LOG_LEVEL=trace go test ./... -tags rocksdb -count=5 -race -short -timeout 120m
unit-tests-without-log:
name: Unit tests without log nightly
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: false
- name: Print Go version
run: go version
- name: Run unit tests without logger
run: |
CI_UNIT_NO_LOG=1 go test ./... -tags rocksdb -count=5 -race -short -timeout 120m