diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-04-30 02:56:41 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-04-30 03:00:02 +0200 |
commit | 4835544d2dd31de6ffc7dba59f92093aea98155b (patch) | |
tree | 8e359c41a115530c7d46a2a21335ad32874fb46b | |
parent | Only run tests when source files change. (diff) | |
download | openssh-4835544d2dd31de6ffc7dba59f92093aea98155b.tar.xz openssh-4835544d2dd31de6ffc7dba59f92093aea98155b.zip |
Add Mac OS X 12 test target.
-rw-r--r-- | .github/workflows/c-cpp.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 68db999d8..092b91fdf 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: # First we test all OSes in the default configuration. - os: [ubuntu-20.04, ubuntu-18.04, macos-10.15, macos-11.0] + os: [ubuntu-20.04, ubuntu-18.04, macos-10.15, macos-11, macos-12] configs: [default] # Then we include any extra configs we want to test for specific VMs. # Valgrind slows things down quite a bit, so start them first. @@ -71,7 +71,8 @@ jobs: - { os: ubuntu-18.04, configs: kitchensink } - { os: ubuntu-18.04, configs: without-openssl } - { os: macos-10.15, configs: pam } - - { os: macos-11.0, configs: pam } + - { os: macos-11, configs: pam } + - { os: macos-12, configs: pam } runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 |