summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorAlexander Amelkin <alexander@amelkin.msk.ru>2021-04-21 13:26:27 +0300
committerGitHub <noreply@github.com>2021-04-21 13:26:27 +0300
commit5958d09ca48bedc746267be9803630819c0eb8d8 (patch)
tree85a50df918ae59f2941682fb6c6c5e12baeb039a /.github/workflows/ci.yml
parentb9b81bfe0e61522379e36a8eb810a1bc43525e28 (diff)
parent6b1ce6c1ac34c567d594b24f03ddb43911284f1a (diff)
downloadipmitool-5958d09ca48bedc746267be9803630819c0eb8d8.tar.gz
Merge branch 'master' into bugfix/280-fix-psu-inactive-offsetbugfix/280-fix-psu-inactive-offset
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml15
1 files changed, 4 insertions, 11 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 55ff479..fdbab0c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,5 +1,5 @@
# vi: set et ts=2 sw=2 :
-name: C/C++ CI
+name: build
on:
push:
@@ -8,10 +8,10 @@ on:
branches: [ master ]
jobs:
- ubuntu:
+ linux:
strategy:
matrix:
- os: [ ubuntu-16.04, ubuntu-18.04 ]
+ os: [ ubuntu-16.04, ubuntu-18.04, ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
steps:
- name: install dependencies
@@ -24,17 +24,12 @@ jobs:
libtool \
make \
wget
-# TODO: Add ubuntu-20.04 to the matrix.os list and fix the build
-# - name: install extra dependencies
-# # In Ubuntu 20.04 some crucial development headers/libraries
-# # have been moved from libc6-dev to musl-dev
-# if: matrix.os == 'ubuntu-20.04'
-# run: sudo apt install musl-dev
- name: install extra libraries
# This build job tries to verify as much of ipmitool code
# as possible, hence these libraries. They aren't usually
# needed for normal user builds:
run: |
+ sudo apt update
sudo apt install \
libsystemd-dev \
libreadline-dev \
@@ -50,7 +45,6 @@ jobs:
./configure --enable-intf-dummy \
--enable-intf-dbus \
--enable-intf-usb \
- --enable-intf-bmc \
--enable-intf-free
- name: make
run: make
@@ -60,7 +54,6 @@ jobs:
run: make distcheck
macos-catalina:
-
runs-on: macos-10.15
steps: