ci test / update #25
Workflow file for this run
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, master] | |
| pull_request: | |
| branches: [main, master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential | |
| - name: Install Xlings | |
| env: | |
| XLINGS_NON_INTERACTIVE: 1 | |
| run: | | |
| curl -fsSL https://raw.githubusercontent.com/d2learn/xlings/refs/heads/main/tools/other/quick_install.sh | bash | |
| echo "PATH=$HOME/.xlings/subos/current/bin:$PATH" >> "$GITHUB_ENV" | |
| - name: Install GCC 15.1 with Xlings | |
| run: | | |
| xlings install --verbose | |
| xmake --version | |
| gcc --version | |
| cc --version | |
| - name: Build | |
| run: | | |
| xmake f -m release -y -vv | |
| xmake -y -vv -j$(nproc) | |
| - name: Test | |
| run: xmake run templates_test | |
| - name: Run examples | |
| run: xmake run basic | |
| build-macos: | |
| runs-on: macos-15 | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Xlings | |
| env: | |
| XLINGS_NON_INTERACTIVE: 1 | |
| run: | | |
| curl -fsSL https://raw.githubusercontent.com/d2learn/xlings/refs/heads/main/tools/other/quick_install.sh | bash | |
| echo "PATH=$HOME/.xlings/subos/current/bin:$PATH" >> "$GITHUB_ENV" | |
| - name: Install LLVM 20 with Xlings | |
| run: | | |
| xlings install --verbose | |
| xmake --version | |
| clang --version | |
| - name: Build | |
| run: | | |
| xmake f -m release --toolchain=llvm -y -vv | |
| build-windows: | |
| runs-on: windows-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup xmake | |
| uses: xmake-io/github-action-setup-xmake@v1 | |
| with: | |
| xmake-version: latest | |
| package-cache: true | |
| - name: Build | |
| run: | | |
| xmake f -m release -y -vv | |
| xmake -y -vv -j$env:NUMBER_OF_PROCESSORS | |
| - name: Test | |
| run: xmake run templates_test | |
| - name: Run examples | |
| run: xmake run basic |