Skip to content

Github Action Modifications

Rodrigo Muino Tomonari requested to merge github/fork/AquaBx/main into main

Hi, I modified the Github Actions for Windows to include arm64, x86 and windows-latest in the tests

.github/workflows/coverage-windows.yml

strategy:
      matrix:
        windows: [windows-2019,windows-latest]
        arch: [x86,x64,arm64]
    runs-on: ${{matrix.windows}}

...

run: ./vcbuild.bat ${{matrix.arch}} test-ci-js; node -e 'process.exit(0)'

.github/workflows/build-windows.yml

    strategy:
      matrix:
        windows: [windows-2019,windows-latest]
        arch: [x86,x64,arm64]
      fail-fast: false
    runs-on: ${{ matrix.windows }}

...

run: ./vcbuild.bat ${{matrix.arch}}

Merge request reports

Loading