Skip to content

Commit

Permalink
Github Action: Add new Manual Test workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte@gmail.com>
  • Loading branch information
MrDuartePT committed Apr 7, 2024
1 parent 55ea40c commit be89258
Show file tree
Hide file tree
Showing 2 changed files with 114 additions and 21 deletions.
23 changes: 2 additions & 21 deletions .github/workflows/extra.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
name: Manual actions
on:
workflow_dispatch:
inputs:
BUILD_KERNEL_PATCH:
description: 'Test build kernel patch'
required: true
default: 'true'
type: choice
options:
- true
- false
workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -36,14 +28,3 @@ jobs:
limit-access-to-actor: true
## limits ssh access and adds the ssh public keys of the listed GitHub users
limit-access-to-users: johnfanv2
# Use to test kernel patch build if needed
release-kernel-patch:
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
112 changes: 112 additions & 0 deletions .github/workflows/manual_test.yaml
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

0 comments on commit be89258

Please sign in to comment.