feat: add installation instructions for lld on Arch Linux #117
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang ninja-build | |
| - name: Build Toolchain | |
| run: ./build.sh | |
| - name: Build Examples | |
| run: | | |
| EXAMPLES=( | |
| "webcc_audio" | |
| "webcc_canvas" | |
| "webcc_dom" | |
| "webcc_types" | |
| "webcc_webgl" | |
| "webcc_webgl_waves" | |
| "webcc_webgpu" | |
| ) | |
| for ex in "${EXAMPLES[@]}"; do | |
| echo "Building example: $ex" | |
| # Clean dist folder to ensure fresh build | |
| rm -rf "examples/$ex/dist" | |
| ./examples/$ex/build.sh | |
| done |