clang: change alias for alternate .s
instr
#10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu, windows] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure llvm cmake | |
run: cmake -Bbuild -Sllvm -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="lld;clang" | |
- name: Build clang | |
run: cmake --build build -j4 --target clang | |
- name: Build lld | |
run: cmake --build build -j4 --target lld | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: llvm-${{ matrix.os }} | |
path: build/**/bin |