Enhance type classification and simplify numeric conversion functions #70
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: 25 | |
| 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 LLVM 20 | |
| run: brew install llvm@20 | |
| - name: Verify toolchain | |
| run: | | |
| xmake --version | |
| /opt/homebrew/opt/llvm@20/bin/clang++ --version | |
| clang --version | |
| - name: Build with xmake | |
| run: | | |
| export PATH=/opt/homebrew/opt/llvm@20/bin:$PATH | |
| xmake f -p macosx -m release --toolchain=llvm --sdk=/opt/homebrew/opt/llvm@20 -y -vv | |
| xmake -y -vv -j$(sysctl -n hw.ncpu) | |
| 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 |