Skip to content

Commit

Permalink
ci: Call 'make.py' instead of 'build.py' when building an AUTOSAR app…
Browse files Browse the repository at this point in the history
…lication.

The 'make.py' script is the main entry point and will automatically call
the 'build.py' script.

Signed-off-by: Adrien Ricciardi <[email protected]>
  • Loading branch information
RICCIARDI-Adrien committed Sep 19, 2023
1 parent 5deaff4 commit b97273a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
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
run: ./make.py
working-directory: examples/cortex-a/armv7/bcm2836/rpi2/${{ matrix.example_name }}

avr-arduino-uno-examples:
Expand All @@ -71,7 +71,7 @@ jobs:
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
run: ./make.py
working-directory: examples/avr/arduinoUno/${{ matrix.example_name }}

avr-arduino-mega-2560-examples:
Expand All @@ -95,7 +95,7 @@ jobs:
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
run: ./make.py
working-directory: examples/avr/arduinoMega2560/${{ matrix.example_name }}

posix-examples:
Expand All @@ -115,5 +115,5 @@ jobs:
run: ${{ env.GOIL }} --target=posix/linux --templates=../../../goil/templates/ ${{ matrix.example_name }}.oil
working-directory: examples/posix/${{ matrix.example_name }}
- name: Build the code
run: ./build.py
run: ./make.py
working-directory: examples/posix/${{ matrix.example_name }}

0 comments on commit b97273a

Please sign in to comment.