chore(github-actions): update Windows build tools installation to 2022 #57
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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9.15.4 | |
| - name: Get pnpm store directory | |
| shell: bash | |
| run: | | |
| echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
| - name: Setup pnpm cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.STORE_PATH }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - name: Cache node_modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| examples/*/node_modules | |
| key: ${{ runner.os }}-node-modules-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node-modules- | |
| - name: Cache Rust dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| ~/.cargo/bin | |
| target | |
| examples/*/target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo- | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - name: Install cargo-nextest (Ubuntu/macOS) | |
| if: matrix.os != 'windows-latest' | |
| run: cargo install cargo-nextest --locked --force | |
| - name: Install system dependencies (Ubuntu) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y pkg-config libglib2.0-dev libudev-dev libgtk-3-dev libgdk-pixbuf2.0-dev libwebkit2gtk-4.1-dev | |
| - name: Install system dependencies (macOS) | |
| if: matrix.os == 'macos-latest' | |
| run: | | |
| brew install pkg-config | |
| - name: Install Chocolatey (Windows) | |
| if: matrix.os == 'windows-latest' | |
| run: | | |
| Set-ExecutionPolicy Bypass -Scope Process -Force | |
| [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 | |
| iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
| - name: Install system dependencies (Windows) | |
| if: matrix.os == 'windows-latest' | |
| run: | | |
| # Install Visual Studio Build Tools for Windows (2022 version) | |
| choco install visualstudio2022buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.VCTools --includeRecommended" -y | |
| - name: Setup Windows environment | |
| if: matrix.os == 'windows-latest' | |
| run: | | |
| # Import Chocolatey profile to refresh environment variables | |
| Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1 | |
| refreshenv | |
| # Verify that required tools are available | |
| echo "Checking installed tools..." | |
| echo "Visual Studio Build Tools should be available" | |
| if ($env:PATH -like '*Visual Studio*') { | |
| echo "Visual Studio found in PATH" | |
| } else { | |
| echo "Visual Studio not found in PATH" | |
| } | |
| - name: Install dependencies | |
| run: | | |
| pnpm install | |
| - name: Run Rust tests (Ubuntu/macOS) | |
| if: matrix.os != 'windows-latest' | |
| env: | |
| NEXTEST_EXPERIMENTAL_LIBTEST_JSON: 1 | |
| run: cargo nextest run --message-format=libtest-json-plus > test-results.jsonx | |
| - name: Run Rust tests (Windows) | |
| if: matrix.os == 'windows-latest' | |
| run: cargo test | |
| - name: Run JavaScript tests | |
| run: pnpm test | |
| - name: Upload test results (Ubuntu/macOS) | |
| if: always() && matrix.os != 'windows-latest' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-${{ matrix.os }}-${{ matrix.node-version }} | |
| path: | | |
| coverage/ | |
| test-results/ | |
| test-results.jsonx | |
| if-no-files-found: warn | |
| - name: Upload test results (Windows) | |
| if: always() && matrix.os == 'windows-latest' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-${{ matrix.os }}-${{ matrix.node-version }} | |
| path: | | |
| coverage/ | |
| test-results/ | |
| if-no-files-found: warn |