Enhance concurrency strategy with traits, tests, and documentation #43
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 | |
| env: | |
| XLINGS_VERSION: v0.4.2 | |
| 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 -s -- $XLINGS_VERSION | |
| 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 primitives_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: Setup xmake | |
| uses: xmake-io/github-action-setup-xmake@v1 | |
| with: | |
| xmake-version: latest | |
| package-cache: true | |
| - name: Install Project Dependencies via Xlings | |
| run: | | |
| xlings config --mirror GLOBAL | |
| xlings update | |
| xlings install --verbose | |
| which xmake || true | |
| xmake --version || true | |
| clang --version | |
| - name: Build with xmake | |
| run: | | |
| xmake f -m release --toolchain=llvm -vv -y | |
| xmake -j$(nproc) | |
| 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 primitives_test | |
| - name: Run examples | |
| run: xmake run basic |