RB-392 c++17 unique_ptr copied #185
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: Preview Changes | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - review_requested | |
| - ready_for_review | |
| env: | |
| NODE_OPTIONS: "--max_old_space_size=16384" | |
| jobs: | |
| tests: | |
| if: github.event.pull_request.draft == false | |
| name: Test core | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout repo | |
| - uses: actions/checkout@v3 | |
| # Setup Node.js | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| # Force Install pnpm | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| run_install: true | |
| - run: pnpm install --no-frozen-lockfile | |
| # Setup Python | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.11 | |
| # Install clang + libc++ (needed for C++17 build with Bazel) | |
| - name: Install clang and libc++ | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang libc++-dev libc++abi-dev | |
| # Mount Bazel cache | |
| - name: Mount bazel caches | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.cache/bazel | |
| key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE', '**/*.cpp', '**/*.h', '**/*.rs') || 'default' }} | |
| restore-keys: | | |
| bazel-cache- | |
| # Setup Bazelisk | |
| - name: Install Bazelisk | |
| run: | | |
| sudo curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.27.0/bazelisk-linux-amd64 -o /usr/local/bin/bazelisk | |
| sudo chmod +x /usr/local/bin/bazelisk | |
| # Run Bazel tests | |
| - name: Test core | |
| run: bazelisk test //libs/core/test | |
| - name: Test std | |
| run: bazelisk test //libs/std/test | |
| - name: Test api | |
| run: bazelisk test //libs/api/test | |
| - name: Test python | |
| run: | | |
| bazelisk test --incompatible_use_python_toolchains=false --python_path=$(which python) //libs/wrappers/python:rtbot_test | |
| - name: Test javascript | |
| run: bazelisk test //libs/wrappers/javascript:test |