Skip to content

Commit

Permalink
.github/workflows Set compiler and linker again
Browse files Browse the repository at this point in the history
  • Loading branch information
suhas-pai committed Sep 27, 2024
1 parent 772f838 commit 28a7087
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
submodules: 'recursive'
- name: make
run: |
make KARCH=${{ matrix.arch }}
make KARCH=${{ matrix.arch }} CC=clang LD=ld.lld
make clean KARCH=${{ matrix.arch }}
make all-hdd KARCH=${{ matrix.arch }}
make all-hdd KARCH=${{ matrix.arch }} CC=clang LD=ld.lld
- name: Run Tests
working-directory: tests/
run: |
Expand All @@ -50,9 +50,9 @@ jobs:
submodules: 'recursive'
- name: make
run: |
make KARCH=${{ matrix.arch }}
make KARCH=${{ matrix.arch }} CC=clang LD=ld.lld
make clean KARCH=${{ matrix.arch }}
make all-hdd KARCH=${{ matrix.arch }}
make all-hdd KARCH=${{ matrix.arch }} CC=clang LD=ld.lld
- name: Run Tests
working-directory: tests/
run: |
Expand Down

0 comments on commit 28a7087

Please sign in to comment.