-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github Action: Add new Manual Test workflow
Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte@gmail.com>
- Loading branch information
1 parent
55ea40c
commit be89258
Showing
2 changed files
with
114 additions
and
21 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
name: Manual Build Test | ||
run-name: ${{ github.actor }} running Build PR | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
BUILD_KERNEL_PATCH: | ||
description: 'Test build kernel patch' | ||
required: true | ||
default: 'true' | ||
type: choice | ||
options: | ||
- true | ||
- false | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Dependencies | ||
run: ./deploy/dependencies/install_dependencies_ubuntu.sh | ||
shell: bash | ||
- name: Build | ||
run: ./tests/test_kernel_build.sh | ||
shell: bash | ||
- name: Install | ||
run: ./tests/test_kernel_install.sh | ||
shell: bash | ||
|
||
run-kernel-module-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Dependencies | ||
run: ./deploy/dependencies/install_dependencies_ubuntu.sh | ||
shell: bash | ||
- name: Test Install | ||
run: ./tests/test_kernel_install.sh | ||
shell: bash | ||
- name: Test Reload First | ||
run: ./tests/test_kernel_reload.sh | ||
shell: bash | ||
- name: Test Reload Second | ||
run: ./tests/test_kernel_reload.sh | ||
shell: bash | ||
|
||
run-kernel-dkms-install-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Dependencies | ||
run: ./deploy/dependencies/install_dependencies_ubuntu.sh | ||
shell: bash | ||
- name: Build | ||
run: ./tests/test_kenel_dkms_install.sh || true | ||
shell: bash | ||
|
||
run-tests: | ||
name: Run Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v4 | ||
- name: Install Development Dependencies | ||
run: ./deploy/dependencies/install_development_dependencies_ubuntu.sh | ||
shell: bash | ||
- name: Lint with Linux checkpath | ||
if: always() | ||
run: ./tests/test_kernel_checkpath.sh | ||
shell: bash | ||
- name: Lint with pylint | ||
if: always() | ||
run: ./tests/test_python.sh | ||
shell: bash | ||
- name: Test python CLI | ||
if: always() | ||
run: ./tests/test_python_cli.sh | ||
shell: bash | ||
#- name: Test python GUI | ||
#if: always() | ||
#run: ./tests/test_python_gui.sh | ||
#shell: bash | ||
- name: Install python package | ||
if: always() | ||
run: ./deploy/python_install_pip_pkg.sh | ||
shell: bash | ||
|
||
# Use to test kernel patch build if needed | ||
release-kernel-patch: | ||
needs: [build, run-kernel-module-test, run-kernel-dkms-install-test, run-tests] | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.inputs.BUILD_KERNEL_PATCH == 'true' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Build kernel patch | ||
run: ./deploy/build_kernelpatch.sh | ||
shell: bash | ||
|
||
test-in-docker-container: | ||
needs: [build, run-tests] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Build containers and run tests inside them | ||
run: ./deploy/build_containers.sh | ||
shell: bash |