forked from RedisJSON/RedisJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 957 Bytes
/
flow-sanitizer.yml
File metadata and controls
39 lines (36 loc) · 957 Bytes
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
name: Clang Sanitizer
# Documentation: https://redislabs.atlassian.net/wiki/spaces/DX/pages/3967844669/RediSearch+CI+refactor
on:
workflow_call:
inputs:
container:
default: "ubuntu:jammy"
type: string
required: true
redis-ref:
description: 'Redis ref to checkout'
type: string
required: true
beta-version:
description: 'Beta version for S3 uploads'
type: string
required: false
jobs:
clang-sanitizer:
runs-on: ubuntu-22.04
defaults:
run:
shell: bash -l -eo pipefail {0}
container:
image: ${{ inputs.container }}
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/san-run-tests
with:
container: ${{ inputs.container }}
test-config: QUICK=1
sanitizer: addr
redis-ref: ${{inputs.redis-ref}}