VS Code extension: fix CMake installation and Python venv setup on Windows #2208
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: Linux CI asan | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
asan: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/grumpycoders/pcsx-redux-build:latest | |
env: | |
TEST_RESULTS: /tmp/test-results | |
BUILD: asan | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
set-safe-directory: true | |
- uses: n1hility/cancel-previous-runs@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
make -j 2 all pcsx-redux-tests | |
make -C src/mips/openbios -j 2 BUILD=Release | |
cp src/mips/openbios/openbios.bin . | |
make -C src/mips/openbios clean | |
make -C src/mips/tests -j 2 PCSX_TESTS=true BUILD=Release | |
cp ./openbios.bin src/mips/openbios/ | |
- name: Test | |
run: | | |
xvfb-run ./pcsx-redux-tests |