Skip to content

Commit

Permalink
Merge pull request #128 from RICCIARDI-Adrien/add_initial_github_ci
Browse files Browse the repository at this point in the history
Add initial GitHub ci - Thanks Adrien
  • Loading branch information
jlbirccyn authored Jun 20, 2023
2 parents 2419d15 + 6d80003 commit dcf4bab
Showing 1 changed file with 99 additions and 0 deletions.
99 changes: 99 additions & 0 deletions .github/workflows/build-examples.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
name: Build compiler and examples
on: [push, pull_request]
env:
# Create a new and unique cache for each run, otherwise the cache from the previous actions would be used
CACHE_KEY: repo-${{ github.run_id }}
GOIL: ${{ github.workspace }}/goil/makefile-unix/goil

jobs:
goil:
name: Build Goil compiler
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build Goil
run: ./build.py
working-directory: goil/makefile-unix
- name: Cache Goil build
# Cache the source and build files to share them later with other jobs
uses: actions/cache/save@v3
with:
path: ${{ github.workspace }}
key: ${{ env.CACHE_KEY }}

raspberry-pi-examples:
name: Build Raspberry Pi examples
runs-on: ubuntu-22.04
needs: goil
strategy:
matrix:
# List only the examples that currently compile
example_name: [blink]
steps:
- name: Install ARM toolchain
run: |
sudo apt update
sudo apt install -y gcc-arm-none-eabi
- name: Retrieve sources and Goil binary
uses: actions/cache/restore@v3
with:
path: ${{ github.workspace }}
key: ${{ env.CACHE_KEY }}
- name: Generate the code
run: ${{ env.GOIL }} --target=cortex-a/armv7/bcm2836/rpi2 --templates=../../../../../../goil/templates/ ${{ matrix.example_name }}.oil
working-directory: examples/cortex-a/armv7/bcm2836/rpi2/${{ matrix.example_name }}
- name: Build the code
run: ./build.py
working-directory: examples/cortex-a/armv7/bcm2836/rpi2/${{ matrix.example_name }}

avr-arduino-uno-examples:
name: Build AVR Arduino Uno examples
runs-on: ubuntu-22.04
needs: goil
strategy:
matrix:
example_name: [blink, customCounterExample, extInterrupt, serial, trace]
steps:
- name: Install AVR toolchain
run: |
sudo apt update
sudo apt install -y avr-libc gcc-avr
- name: Retrieve sources and Goil binary
uses: actions/cache/restore@v3
with:
path: ${{ github.workspace }}
key: ${{ env.CACHE_KEY }}
- name: Generate the code
# Use a wildcard to find the .oil file because it is not always named the same than the directory is it contained by
run: ${{ env.GOIL }} --target=avr/arduino/uno --templates=../../../../goil/templates/ *.oil
working-directory: examples/avr/arduinoUno/${{ matrix.example_name }}
- name: Build the code
run: ./build.py
working-directory: examples/avr/arduinoUno/${{ matrix.example_name }}

avr-arduino-mega-2560-examples:
name: Build AVR Arduino Mega 2560 examples
runs-on: ubuntu-22.04
needs: goil
strategy:
matrix:
example_name: [blink, extInterrupt, serial]
steps:
- name: Install AVR toolchain
run: |
sudo apt update
sudo apt install -y avr-libc gcc-avr
- name: Retrieve sources and Goil binary
uses: actions/cache/restore@v3
with:
path: ${{ github.workspace }}
key: ${{ env.CACHE_KEY }}
- name: Generate the code
run: ${{ env.GOIL }} --target=avr/arduino/mega --templates=../../../../goil/templates/ ${{ matrix.example_name }}.oil
working-directory: examples/avr/arduinoMega2560/${{ matrix.example_name }}
- name: Build the code
run: ./build.py
working-directory: examples/avr/arduinoMega2560/${{ matrix.example_name }}

0 comments on commit dcf4bab

Please sign in to comment.