mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Fix Arch Linux Clang
This commit is contained in:
parent
44971f9bca
commit
0f8925e358
8
.github/workflows/linux_arch.yml
vendored
8
.github/workflows/linux_arch.yml
vendored
@ -22,6 +22,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
env:
|
env:
|
||||||
ARTIFACT: webui-linux-arch-${{ matrix.cc }}-${{ matrix.arch }}
|
ARTIFACT: webui-linux-arch-${{ matrix.cc }}-${{ matrix.arch }}
|
||||||
|
CC: ${{ matrix.cc }}
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repository
|
- name: Check out the repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -42,11 +43,16 @@ jobs:
|
|||||||
-v ${{ github.workspace }}:/workspace \
|
-v ${{ github.workspace }}:/workspace \
|
||||||
-w /workspace \
|
-w /workspace \
|
||||||
--user root \
|
--user root \
|
||||||
|
-e CC=${{ matrix.cc }} \
|
||||||
archlinux:latest \
|
archlinux:latest \
|
||||||
bash -c "
|
bash -c "
|
||||||
git config --global --add safe.directory /workspace &&
|
git config --global --add safe.directory /workspace &&
|
||||||
npm i -g esbuild &&
|
npm i -g esbuild &&
|
||||||
chmod +x bridge/build.sh &&
|
chmod +x bridge/build.sh &&
|
||||||
|
if [ '${{ matrix.cc }}' == 'clang' ]; then
|
||||||
|
export AR=llvm-ar
|
||||||
|
export STRIP=llvm-strip
|
||||||
|
fi &&
|
||||||
./bridge/build.sh &&
|
./bridge/build.sh &&
|
||||||
make debug &&
|
make debug &&
|
||||||
make &&
|
make &&
|
||||||
@ -64,7 +70,7 @@ jobs:
|
|||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.ARTIFACT }}
|
name: ${{ env.ARTIFACT }}
|
||||||
path: ${{ env.ARTIFACT }}
|
path: ${{ env.ARTIFACT}}
|
||||||
|
|
||||||
- name: Prepare Release
|
- name: Prepare Release
|
||||||
if: >
|
if: >
|
||||||
|
Loading…
x
Reference in New Issue
Block a user