2021-04-28 03:35:28 +02:00
|
|
|
name: Upstream self-hosted
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master, ci ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
selfhosted:
|
|
|
|
if: github.repository == 'openssh/openssh-portable-selfhosted'
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
env:
|
|
|
|
TARGET_HOST: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-06-07 06:36:32 +02:00
|
|
|
os: [ obsdsnap, obsdsnap-i386 ]
|
2021-04-28 03:35:28 +02:00
|
|
|
configs: [ default ]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: shutdown VM if running
|
|
|
|
run: vmshutdown
|
|
|
|
- name: startup VM
|
|
|
|
run: vmstartup
|
|
|
|
- name: update source
|
|
|
|
run: vmrun "cd /usr/src && cvs up -dPA usr.bin/ssh regress/usr.bin/ssh"
|
|
|
|
- name: make
|
|
|
|
run: vmrun "cd /usr/src/usr.bin/ssh && make obj && make clean && make"
|
|
|
|
- name: make install
|
|
|
|
run: vmrun "cd /usr/src/usr.bin/ssh && sudo make install"
|
|
|
|
- name: make tests
|
|
|
|
run: vmrun "cd /usr/src/regress/usr.bin/ssh && make obj && make clean && SUDO=sudo make"
|
2021-06-07 11:19:23 +02:00
|
|
|
- name: save logs
|
|
|
|
if: failure()
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.os }}-logs
|
|
|
|
path: |
|
|
|
|
/usr/obj/regress/usr.bin/ssh/*.log
|
2021-04-28 03:35:28 +02:00
|
|
|
- name: shutdown VM
|
|
|
|
if: always()
|
|
|
|
run: vmshutdown
|