summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAlexander Amelkin <alexander@amelkin.msk.ru>2023-01-11 16:59:53 +0300
committerAlexander Amelkin <mocbuhtig@amelkin.msk.ru>2023-01-11 17:26:01 +0300
commit707a2980f63ab47081538bec3f3d94082eb0b880 (patch)
treec815259fd8d65501d63c53597d6dcc528692d2e0 /.github
parent966d6e80b0d04ed15bd53575688274241e0effe4 (diff)
downloadipmitool-707a2980f63ab47081538bec3f3d94082eb0b880.tar.gz
Update github actions for modern OSes
Add Ubuntu 22.04, MacOS 12, Windows Server 2022 Signed-off-by: Alexander Amelkin <alexander@amelkin.msk.ru>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9559ada..58f557b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -11,7 +11,7 @@ jobs:
linux:
strategy:
matrix:
- os: [ ubuntu-18.04, ubuntu-20.04 ]
+ os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-22.04 ]
runs-on: ${{ matrix.os }}
steps:
- name: install dependencies
@@ -56,7 +56,7 @@ jobs:
macos:
strategy:
matrix:
- os: [ macos-10.15, macos-11 ]
+ os: [ macos-10.15, macos-11, macos-12 ]
runs-on: ${{ matrix.os }}
steps:
@@ -77,9 +77,11 @@ jobs:
- name: make distcheck
run: make distcheck
- win-srv-2019:
-
- runs-on: windows-2019
+ windows:
+ strategy:
+ matrix:
+ os: [ windows-2019, windows-2022 ]
+ runs-on: ${{ matrix.os }}
steps:
- name: install dependencies