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 8fa1fdb commit 44971f9Copy full SHA for 44971f9
.github/workflows/linux_redhat.yml
@@ -22,6 +22,7 @@ jobs:
22
fail-fast: false
23
env:
24
ARTIFACT: webui-linux-redhat-${{ matrix.cc }}-${{ matrix.arch }}
25
+ CC: ${{ matrix.cc }}
26
steps:
27
- name: Check out the repository
28
uses: actions/checkout@v4
@@ -44,11 +45,16 @@ jobs:
44
45
-v ${{ github.workspace }}:/workspace \
46
-w /workspace \
47
--user root \
48
+ -e CC=${{ matrix.cc }} \
49
redhat:latest \
50
bash -c "
51
git config --global --add safe.directory /workspace &&
52
npm i -g esbuild &&
53
chmod +x bridge/build.sh &&
54
+ if [ '${{ matrix.cc }}' == 'clang' ]; then
55
+ export AR=llvm-ar
56
+ export STRIP=llvm-strip
57
+ fi &&
58
./bridge/build.sh &&
59
make debug &&
60
make &&
0 commit comments