Skip to content

Commit

Permalink
Merge pull request webui-dev#253 from ttytm/ci/update-linux-arm64-name
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm authored Oct 13, 2023
2 parents 17981ec + 1d68040 commit 45c685e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
arch: [x64]
include:
- compiler: GCC
arch: aarch64
arch: arm64
- compiler: GCC
arch: arm
fail-fast: false
Expand All @@ -52,14 +52,14 @@ jobs:
if [ "${{ matrix.compiler }}" == "Clang" ]; then
sudo ln -s llvm-ar-14 /usr/bin/llvm-ar
sudo ln -s llvm-ranlib-14 /usr/bin/llvm-ranlib
elif [ "${{ matrix.arch }}" == "aarch64" ]; then
elif [ "${{ matrix.arch }}" == "arm64" ]; then
sudo apt install gcc-aarch64-linux-gnu
elif [ "${{ matrix.arch }}" == "arm" ]; then
sudo apt install gcc-arm-linux-gnueabihf
fi
- name: Build Debug Target
run: |
if [ "${{ matrix.arch }}" == "aarch64" ]; then
if [ "${{ matrix.arch }}" == "arm64" ]; then
make CC=aarch64-linux-gnu-gcc debug
elif [ "${{ matrix.arch }}" == "arm" ]; then
make CC=arm-linux-gnueabihf-gcc debug
Expand All @@ -69,7 +69,7 @@ jobs:
fi
- name: Build Release Target
run: |
if [ "${{ matrix.arch }}" == "aarch64" ]; then
if [ "${{ matrix.arch }}" == "arm64" ]; then
make CC=aarch64-linux-gnu-gcc
elif [ "${{ matrix.arch }}" == "arm" ]; then
make CC=arm-linux-gnueabihf-gcc
Expand Down

0 comments on commit 45c685e

Please sign in to comment.