Skip to content

Commit

Permalink
WIP: specify build_jet runner
Browse files Browse the repository at this point in the history
wip: build without specifying cc, print file information after build
  • Loading branch information
ttytm committed Jun 17, 2024
1 parent 01282db commit 50b5ab7
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
contents: write
strategy:
matrix:
os: [ubuntu-latest, webui-ubuntu-20-04-arm64]
cc: [clang, gcc]
os: [ubuntu-latest, buildjet-2vcpu-ubuntu-2204-arm]
cc: [clang, gcc, '']
fail-fast: false
env:
CC: ${{ matrix.cc }}
Expand All @@ -54,7 +54,11 @@ jobs:
run: make debug
- name: Build Release Target
if: ${{ !cancelled() }}
run: make
run: |
cc --version
find $(which gcc)*
gcc --version
make
- name: Build TLS Debug Target
run: make WEBUI_USE_TLS=1 debug
- name: Build TLS Release Target
Expand Down Expand Up @@ -110,7 +114,7 @@ jobs:
- name: Prepare Artifact
run: |
artifact=webui-linux-${{ matrix.cc }}
if [[ ${{ matrix.os }} == *'arm64' ]]; then
if [[ ${{ matrix.os }} == *'arm' ]]; then
artifact+=-arm64
else
artifact+=-x64
Expand Down

0 comments on commit 50b5ab7

Please sign in to comment.