We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fadcc6 commit e041cebCopy full SHA for e041ceb
.github/workflows/test.yml
@@ -16,6 +16,9 @@ jobs:
16
- name: Check out code
17
uses: actions/checkout@v2
18
19
+ - name: Set up Clang
20
+ uses: egor-tensin/setup-clang@v1
21
+
22
- name: Set up Node.js
23
uses: actions/setup-node@v1
24
with:
@@ -51,7 +54,8 @@ jobs:
51
54
run: |
52
55
wget https://raw.githubusercontent.com/api7/apisix-build-tools/master/build-apisix-base.sh
53
56
chmod +x build-apisix-base.sh
- OR_PREFIX=$OPENRESTY_PREFIX cc_opt="-Werror" ./build-apisix-base.sh latest
57
+ OR_PREFIX=$OPENRESTY_PREFIX CC="clang -fsanitize=address -fcolor-diagnostics -Qunused-arguments" \
58
+ cc_opt="-Werror" ./build-apisix-base.sh latest
59
60
- name: Script
61
0 commit comments