mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-10 18:47:22 +00:00
ci: Add support for Ubuntu 20.04
- Add ubuntu-20.04 target - Disable building of Solaris-specific `bmc` interface on Ubuntu - Rename `ubuntu` matrix to `linux` Signed-off-by: Alexander Amelkin <alexander@amelkin.msk.ru>
This commit is contained in:
parent
8554e19e68
commit
cac593b83d
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -1,5 +1,5 @@
|
|||||||
# vi: set et ts=2 sw=2 :
|
# vi: set et ts=2 sw=2 :
|
||||||
name: C/C++ CI
|
name: build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -8,10 +8,10 @@ on:
|
|||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu:
|
linux:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-16.04, ubuntu-18.04 ]
|
os: [ ubuntu-16.04, ubuntu-18.04, ubuntu-20.04 ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: install dependencies
|
- name: install dependencies
|
||||||
@ -24,12 +24,6 @@ jobs:
|
|||||||
libtool \
|
libtool \
|
||||||
make \
|
make \
|
||||||
wget
|
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
|
- name: install extra libraries
|
||||||
# This build job tries to verify as much of ipmitool code
|
# This build job tries to verify as much of ipmitool code
|
||||||
# as possible, hence these libraries. They aren't usually
|
# as possible, hence these libraries. They aren't usually
|
||||||
@ -51,7 +45,6 @@ jobs:
|
|||||||
./configure --enable-intf-dummy \
|
./configure --enable-intf-dummy \
|
||||||
--enable-intf-dbus \
|
--enable-intf-dbus \
|
||||||
--enable-intf-usb \
|
--enable-intf-usb \
|
||||||
--enable-intf-bmc \
|
|
||||||
--enable-intf-free
|
--enable-intf-free
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make
|
||||||
@ -61,7 +54,6 @@ jobs:
|
|||||||
run: make distcheck
|
run: make distcheck
|
||||||
|
|
||||||
macos-catalina:
|
macos-catalina:
|
||||||
|
|
||||||
runs-on: macos-10.15
|
runs-on: macos-10.15
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user