Skip to content

Commit

Permalink
Drop use of env vars in matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdewar committed Jul 12, 2023
1 parent 39fcac0 commit a9fad32
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ on:
env:
VCPKG_ROOT: "vcpkg"
VCPKG_BINARY_SOURCES: "clear;nuget,GitHub,readwrite"
LINUX_RUNNER: ubuntu-22.04
DEFAULT_UBUNTU_GCC_VERSION: 11 # update this if you change LINUX_RUNNER
WINDOWS_RUNNER: windows-2022
DEFAULT_UBUNTU_GCC_VERSION: 11 # update this if you change the Linux runner

jobs:
qa:
Expand All @@ -32,13 +30,13 @@ jobs:
matrix:
include:
- platform: linux
os: ${{env.LINUX_RUNNER}}
os: ubuntu-22.04
compiler: gcc
- platform: linux
os: ${{env.LINUX_RUNNER}}
os: ubuntu-22.04
compiler: clang
- platform: windows
os: ${{env.WINDOWS_RUNNER}}
os: windows-2022
compiler: msvc

steps:
Expand Down

0 comments on commit a9fad32

Please sign in to comment.