kopia lustrzana https://github.com/RobertGawron/IonizationChamber
ci support for building firmware
rodzic
ec2d350ce2
commit
71fb36979c
|
@ -0,0 +1,27 @@
|
||||||
|
name: Build Firmware
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_and_test:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Build and run tests
|
||||||
|
run: |
|
||||||
|
sudo apt-get install -y sdcc cmake
|
||||||
|
cd ./Software/Firmware
|
||||||
|
sdcc --version
|
||||||
|
mkdir build_directory
|
||||||
|
cd build_directory
|
||||||
|
cmake -DCMAKE_SYSTEM_NAME=Generic -DCMAKE_C_COMPILER=sdcc ..
|
||||||
|
make VERBOSE=1
|
||||||
|
|
||||||
|
- name: Archive firmware binary
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: Firmware binary
|
||||||
|
path: ./Software/Firmware/build_directory/IonizationChamber.ihx
|
48
.travis.yml
48
.travis.yml
|
@ -1,48 +0,0 @@
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
# Check if firmware compiles
|
|
||||||
- language: minimal
|
|
||||||
dist: xenial
|
|
||||||
sudo: true
|
|
||||||
before_install:
|
|
||||||
- sudo apt-get install -y sdcc cmake
|
|
||||||
- cd ./Software/Firmware
|
|
||||||
script:
|
|
||||||
- sdcc --version
|
|
||||||
- mkdir build_directory
|
|
||||||
- cd build_directory
|
|
||||||
- cmake -DCMAKE_SYSTEM_NAME=Generic -DCMAKE_C_COMPILER=sdcc ..
|
|
||||||
- make VERBOSE=1
|
|
||||||
|
|
||||||
# Check if latex files are correct
|
|
||||||
- language: minimal
|
|
||||||
dist: xenial
|
|
||||||
sudo: true
|
|
||||||
before_install:
|
|
||||||
- sudo apt-get install -y texlive-latex-base texlive-latex-extra texlive-extra-utils poppler-utils
|
|
||||||
- cd ./Documentation/Diagrams
|
|
||||||
script:
|
|
||||||
- chmod +x ./creatediagrams.sh
|
|
||||||
- ./creatediagrams.sh
|
|
||||||
|
|
||||||
# Use cppcheck to check statically C code
|
|
||||||
- language: minimal
|
|
||||||
dist: xenial
|
|
||||||
sudo: true
|
|
||||||
before_install:
|
|
||||||
- sudo apt-get install -y cppcheck
|
|
||||||
- cd ./Software/Firmware
|
|
||||||
script:
|
|
||||||
- cppcheck --enable=all --inline-suppr --force --quiet --error-exitcode=1 Src/* Inc/*
|
|
||||||
|
|
||||||
# Use pyflakes to check statically Python code
|
|
||||||
- language: python
|
|
||||||
dist: xenial
|
|
||||||
sudo: true
|
|
||||||
before_install:
|
|
||||||
- sudo apt-get install -y python3-pip
|
|
||||||
- pip3 install pyflakes
|
|
||||||
- cd ./Software/DataAcquisition
|
|
||||||
script:
|
|
||||||
- pyflakes *.py
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
# Ionization Chamber (a device to measure radioactivity level)
|
# Ionization Chamber (a device to measure radioactivity level)
|
||||||
|
|
||||||
[](https://travis-ci.com/RobertGawron/IonizationChamber)
|
[](https://github.com/RobertGawron/IonizationChamber/actions?query=workflow%3A%22Build+Firmware%22) [](https://github.com/RobertGawron/IonizationChamber/actions?query=workflow%3A%22Static+Code+Analysis%22)
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Principle of operation
|
## Principle of operation
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue