Browse Source

Try and upgrade CI to latest OS versions.

pull/1724/head
Joao Matos 2 years ago
parent
commit
6909165287
  1. 6
      .github/workflows/main.yml

6
.github/workflows/main.yml

@ -9,9 +9,9 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
config: config:
- { os: ubuntu-20.04, platform: x64, cxx: g++-10, cc: gcc-10 } - { os: ubuntu-22.04, platform: x64, cxx: g++-11, cc: gcc-11 }
- { os: macos-11, platform: x64, cxx: clang++, cc: clang } - { os: macos-11, platform: x64, cxx: clang++, cc: clang }
- { os: windows-2019, platform: x64, vs: msvc } - { os: windows-2022, platform: x64, vs: msvc }
runs-on: ${{ matrix.config.os }} runs-on: ${{ matrix.config.os }}
@ -38,7 +38,7 @@ jobs:
- name: Environment - name: Environment
if: matrix.config.vs if: matrix.config.vs
shell: bash shell: bash
run: echo "/c/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/MSBuild/Current/Bin" >> $GITHUB_PATH run: echo "/c/Program Files/Microsoft Visual Studio/2022/Enterprise/MSBuild/Current/Bin" >> $GITHUB_PATH
- name: Setup - name: Setup
shell: bash shell: bash

Loading…
Cancel
Save