openssh/.github/workflows/selfhosted.yml

117 lines
4.0 KiB
YAML
Raw Normal View History

name: C/C++ CI self-hosted
on:
push:
paths: [ '**.c', '**.h', '**.m4', '**.sh', '.github/**', '**/Makefile.in', 'configure.ac' ]
jobs:
selfhosted:
if: github.repository == 'openssh/openssh-portable-selfhosted'
runs-on: ${{ matrix.host }}
timeout-minutes: 600
env:
HOST: ${{ matrix.host }}
TARGET_HOST: ${{ matrix.target }}
TARGET_CONFIG: ${{ matrix.config }}
strategy:
fail-fast: false
# We use a matrix in two parts: firstly all of the VMs are tested with the
# default config. "target" corresponds to a label associated with the
# worker. The default is an ephemeral VM running under libvirt.
matrix:
target:
2022-02-22 02:08:59 +00:00
- alpine
2022-02-26 03:10:41 +00:00
- debian-i386
2021-04-16 08:14:25 +00:00
- dfly30
- dfly48
- dfly58
2021-06-02 01:17:54 +00:00
- dfly60
2022-11-11 00:25:37 +00:00
- dfly62
2021-04-26 03:35:44 +00:00
- fbsd10
2021-04-16 08:14:25 +00:00
- fbsd12
- fbsd13
2021-05-27 11:13:38 +00:00
- minix3
- nbsd3
- nbsd4
2021-04-20 13:31:29 +00:00
- nbsd8
- nbsd9
2021-04-16 23:55:47 +00:00
- obsd51
2021-04-23 04:41:13 +00:00
- obsd67
2021-05-01 10:07:47 +00:00
- obsd69
2021-12-25 05:42:51 +00:00
- obsd70
- obsdsnap
- obsdsnap-i386
2021-04-23 00:28:28 +00:00
- openindiana
2021-04-16 08:14:25 +00:00
- sol10
- sol11
config:
- default
host:
- libvirt
include:
# Then we include extra libvirt test configs.
- { target: aix51, config: default, host: libvirt }
- { target: debian-i386, config: pam, host: libvirt }
- { target: dfly30, config: without-openssl, host: libvirt}
- { target: dfly48, config: pam ,host: libvirt }
- { target: dfly58, config: pam, host: libvirt }
- { target: dfly60, config: pam, host: libvirt }
- { target: dfly62, config: pam, host: libvirt }
- { target: fbsd10, config: pam, host: libvirt }
- { target: fbsd12, config: pam, host: libvirt }
- { target: fbsd13, config: pam, host: libvirt }
- { target: nbsd8, config: pam, host: libvirt }
- { target: nbsd9, config: pam, host: libvirt }
- { target: openindiana, config: pam, host: libvirt }
- { target: sol10, config: pam, host: libvirt }
- { target: sol11, config: pam-krb5, host: libvirt }
- { target: sol11, config: sol64, host: libvirt }
# VMs with persistent disks that have their own runner.
- { target: win10, config: default, host: win10 }
- { target: win10, config: cygwin-release, host: win10 }
# Physical hosts, with either native runners or remote via ssh.
- { target: ARM, config: default, host: ARM }
- { target: ARM64, config: default, host: ARM64 }
- { target: ARM64, config: pam, host: ARM64 }
- { target: debian-riscv64, config: default, host: debian-riscv64 }
- { target: openwrt-mips, config: default, host: openwrt-mips }
- { target: openwrt-mipsel, config: default, host: openwrt-mipsel }
steps:
- name: shutdown VM if running
run: vmshutdown
working-directory: ${{ runner.temp }}
- uses: actions/checkout@main
- name: autoreconf
run: autoreconf
- name: startup VM
run: vmstartup
working-directory: ${{ runner.temp }}
- name: configure
run: vmrun ./.github/configure.sh ${{ matrix.config }}
- name: save config
uses: actions/upload-artifact@main
with:
name: ${{ matrix.target }}-${{ matrix.config }}-config
path: config.h
2021-09-29 03:28:56 +00:00
- name: make clean
run: vmrun make clean
- name: make
run: vmrun make
- name: make tests
run: vmrun ./.github/run_test.sh ${{ matrix.config }}
timeout-minutes: 600
- name: save logs
if: failure()
uses: actions/upload-artifact@main
with:
name: ${{ matrix.target }}-${{ matrix.config }}-logs
2021-02-20 02:06:25 +00:00
path: |
config.h
config.log
2021-02-20 02:06:25 +00:00
regress/*.log
regress/valgrind-out/
- name: shutdown VM
if: always()
run: vmshutdown
working-directory: ${{ runner.temp }}