mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 07:33:01 +02:00
Add support for uploading resulting image(s) from a job even though the tests may have failed. This way we can inspect the image and see what went wrong, or if it was a glitch in the matrix^W^Wazure. Retain a symlink to images/ for test step. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
61 lines
1.7 KiB
YAML
61 lines
1.7 KiB
YAML
name: Reggie Regression
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Regression Testing
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set Build Variables
|
|
id: vars
|
|
run: |
|
|
target=x86_64-minimal
|
|
echo "dir=infix-$target" >> $GITHUB_OUTPUT
|
|
echo "tgz=infix-$target.tar.gz" >> $GITHUB_OUTPUT
|
|
- name: Restore Cache of dl/
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: dl/
|
|
key: dl-x86_64-netconf-${{ hashFiles('.git/modules/buildroot/refs/heads/master', 'package/*/*.hash') }}
|
|
restore-keys: |
|
|
dl-x86_64-netconf-
|
|
dl-x86_64-
|
|
dl-
|
|
- name: Restore Cache of .ccache/
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .ccache/
|
|
key: ccache-x86_64-netconf-${{ hashFiles('.git/modules/buildroot/refs/head/master', 'package/*/*.hash') }}
|
|
restore-keys: |
|
|
ccache-x86_64-netconf-
|
|
ccache-x86_64-
|
|
ccache-
|
|
- name: Configure Minimal NETCONF
|
|
run: |
|
|
make x86_64_minimal_defconfig
|
|
- name: Build
|
|
run: |
|
|
make
|
|
- name: Prepare Artifact
|
|
run: |
|
|
cd output
|
|
mv images ${{ steps.vars.outputs.dir }}
|
|
ln -s ${{ steps.vars.outputs.dir }} images
|
|
tar cfz ${{ steps.vars.outputs.tgz }} ${{ steps.vars.outputs.dir }}
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
path: output/${{ steps.vars.outputs.tgz }}
|
|
- name: Regression Test
|
|
run: |
|
|
make test-qeneth
|