0.3.rev.A. Update documentation #249
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
# ------------------------------------------------------------------------------ | |
# USB EPROM/Flash Programmer | |
# | |
# Copyright (2024) Robson Martins | |
# | |
# This work is licensed under a Creative Commons Attribution-NonCommercial- | |
# ShareAlike 4.0 International License. | |
# ------------------------------------------------------------------------------ | |
name: Test Software | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
BUILD_TYPE: Debug | |
SOFTWARE_PROJECT_DIR: ${{github.workspace}}/software/usbflashprog | |
jobs: | |
build: | |
name: Test Software | |
runs-on: ubuntu-latest | |
steps: | |
# ------------------------------------------------------------------------ | |
# Checkout the sources | |
# ------------------------------------------------------------------------ | |
- name: Checkout the Sources | |
uses: actions/checkout@v4 | |
# ------------------------------------------------------------------------ | |
# Install Prerequisites | |
# ------------------------------------------------------------------------ | |
- name: Install Prerequisites | |
run: | | |
sudo apt-get update | |
sudo apt-get install cmake build-essential libglu1-mesa-dev libpulse-dev libglib2.0-dev | |
sudo apt-get --no-install-recommends install libqt*5-dev qt*5-dev libqt5waylandcompositor5-dev | |
# ------------------------------------------------------------------------ | |
# Configure CMake | |
# ------------------------------------------------------------------------ | |
- name: Configure CMake | |
working-directory: ${{env.SOFTWARE_PROJECT_DIR}} | |
run: cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTEST_BUILD=ON | |
# ------------------------------------------------------------------------ | |
# Build | |
# ------------------------------------------------------------------------ | |
- name: Build | |
working-directory: ${{env.SOFTWARE_PROJECT_DIR}} | |
run: cmake --build build --config ${{env.BUILD_TYPE}} | |
# ------------------------------------------------------------------------ | |
# Test | |
# ------------------------------------------------------------------------ | |
- name: Test | |
working-directory: ${{env.SOFTWARE_PROJECT_DIR}}/build | |
run: ctest -C ${{env.BUILD_TYPE}} |