Add links to README.md #18
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: Widberg Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: ilammy/[email protected] | |
- name: Build | |
run: | | |
cmake -S llvm -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_TARGETS_TO_BUILD="X86" | |
cmake --build build --config RelWithDebInfo --target clang | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: widberg-windows-x86_64-${{ github.sha }} | |
path: ./build/bin/clang-cl.exe |