MrDuartePT running Build PR #58
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
name: Build PR | |
run-name: ${{ github.actor }} running Build PR | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- 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@v3 | |
- 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@v3 | |
- 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@v2 | |
- name: Install Development Dependencies | |
run: ./deploy/dependencies/install_development_dependencies_ubuntu.sh | |
shell: bash | |
- name: Install xwayland-run | |
run: ./deploy/dependencies/install_xwayland-run.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 | |
test-in-docker-container: | |
needs: [build, run-tests] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build containers and run tests inside them | |
run: ./deploy/build_containers.sh | |
shell: bash |