depend #1168
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: OpenBSD | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths: [ '**.c', '**.h', '**.sh', '.github/workflows/upstream.yml' ] | |
| jobs: | |
| selfhosted: | |
| name: "upstream ${{ matrix.target }} ${{ matrix.config }}" | |
| if: github.repository == 'openssh/openssh-portable-selfhosted' | |
| runs-on: ${{ matrix.host }} | |
| env: | |
| EPHEMERAL: true | |
| HOST: ${{ matrix.host }} | |
| TARGET_HOST: ${{ matrix.target }} | |
| TARGET_CONFIG: ${{ matrix.config }} | |
| TARGET_DOMAIN: ${{ format('{0}-{1}-{2}', matrix.target, matrix.config, github.run_id) || matrix.target }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| host: | |
| - libvirt | |
| target: [ obsdsnap, obsdsnap-i386 ] | |
| # TODO: restore 'ubsan' once fixed | |
| config: [ default, kerberos5, without-openssl ] | |
| include: | |
| - { host: libvirt-arm64, target: obsdsnap-arm64, config: default } | |
| - { host: libvirt-arm64, target: obsdsnap-arm64, config: kerberos5 } | |
| - { host: libvirt-arm64, target: obsdsnap-arm64, config: without-openssl } | |
| # - { host: libvirt-arm64, target: obsdsnap-arm64, config: ubsan } | |
| steps: | |
| - name: unmount stale workspace | |
| run: fusermount -u ${GITHUB_WORKSPACE} || true | |
| working-directory: ${{ runner.temp }} | |
| - name: shutdown VM if running | |
| run: vmshutdown | |
| working-directory: ${{ runner.temp }} | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # main | |
| - name: startup VM | |
| run: vmstartup | |
| working-directory: ${{ runner.temp }} | |
| - name: copy and mount workspace | |
| run: sshfs_mount | |
| working-directory: ${{ runner.temp }} | |
| - name: update source | |
| run: vmrun "cd /usr/src && if [ -d .git ]; then git pull && git log -n1; else cvs -q up -dPA usr.bin/ssh regress/usr.bin/ssh usr.bin/nc; fi" | |
| - name: set build options in /etc/mk.conf | |
| run: | | |
| case ${{ matrix.config }} in \ | |
| without-openssl) o='OPENSSL=no' ;; \ | |
| kerberos5) o='KERBEROS5=yes' ;; \ | |
| ubsan) o='DEBUG=-fsanitize-minimal-runtime -fsanitize=undefined';; \ | |
| esac | |
| vmrun "echo $o | sudo tee -a /etc/mk.conf" | |
| - name: update netcat | |
| run: vmrun "cd /usr/src/usr.bin/nc && make clean all && sudo make install" | |
| - name: make clean | |
| run: vmrun "make -C /usr/src/usr.bin/ssh obj clean && make -C /usr/src/regress/usr.bin/ssh obj clean && sudo chmod -R g-w /usr/src /usr/obj" | |
| - name: make | |
| run: vmrun " make -C /usr/src/usr.bin/ssh" | |
| - name: make install | |
| run: vmrun "sudo make -C /usr/src/usr.bin/ssh install && sudo /etc/rc.d/sshd -f restart" | |
| - name: make tests` | |
| run: vmrun "cd /usr/src/regress/usr.bin/ssh && case ${{ matrix.config }} in without-openssl) make OPENSSL=no;; *) make;; esac" | |
| env: | |
| SUDO: sudo | |
| timeout-minutes: 300 | |
| - name: show logs | |
| if: failure() | |
| run: vmrun 'for i in /usr/src/regress/usr.bin/ssh/obj/*.log; do echo ====; echo logfile $i; echo =====; cat $i; done' | |
| - name: save logs | |
| if: failure() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # main | |
| with: | |
| name: ${{ matrix.target }}-${{ matrix.config }}-logs | |
| path: | | |
| /usr/src/regress/usr.bin/ssh/obj/*.log | |
| /usr/src/regress/usr.bin/ssh/obj/log/* | |
| - name: unmount workspace | |
| if: always() | |
| run: | | |
| fusermount -u ${GITHUB_WORKSPACE} || true | |
| fusermount -z -u ${GITHUB_WORKSPACE} || true | |
| working-directory: ${{ runner.temp }} | |
| - name: shutdown VM | |
| if: always() | |
| run: vmshutdown | |
| working-directory: ${{ runner.temp }} |