mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-31 04:53:01 +02:00
- Collect all test related targets under the test- prefix. - Add target to run test suite against a `make run` instance. The intended use-case is that you are testing out a new build with `make run`, and then realize that you want to run some tests. With this change, it is now possible to run `make infix-run-check` from a separate terminal - which attaches to the running instance and runs the tests. - Provide -sh targets to spawn interactive environments, which is useful during debugging. - Allow the user to supply a custom suite or list of tests to be run by 9PM.
45 lines
1.1 KiB
YAML
45 lines
1.1 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: 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: Regression Test
|
|
run: |
|
|
make test-qeneth
|