mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-26 13:49:21 +00:00
bb379b8274
* Updated makefile to only rebuild changed files. Also generates dependency listings to check for modified header files * Updated workflow to archive the generated binaries and build fullspec and standard versions of the app * Updated to run workflow on all branches * Create tar file to retain file permissions * Fix archive path * Fix typo * Remove unnecessary git ignore * Added reference to issue that drives the need for nested compressed files. Co-authored-by: akuker <akuker@gmail.com>
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: C/C++ CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Install cross compile toolchain
|
|
run: sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf binutils-arm-linux-gnueabihf
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: make standard
|
|
run: make all DEBUG=1 CONNECT_TYPE=STANDARD
|
|
working-directory: ./src/raspberrypi
|
|
|
|
- name: make fullspec
|
|
run: make all DEBUG=1 CONNECT_TYPE=FULLSPEC
|
|
working-directory: ./src/raspberrypi
|
|
|
|
# We need to tar the binary outputs to retain the executable
|
|
# file permission. Currently, actions/upload-artifact only
|
|
# supports .ZIP files.
|
|
# This is workaround for https://github.com/actions/upload-artifact/issues/38
|
|
- name: tar binary outputs
|
|
run: tar -czvf rascsi.tar.gz ./bin
|
|
working-directory: ./src/raspberrypi
|
|
|
|
- name: upload artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: arm-binaries
|
|
path: ./src/raspberrypi/rascsi.tar.gz
|
|
|
|
# buildroot-image:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - name: git-fetch buildroot
|
|
# run: git clone git://git.busybox.net/buildroot
|
|
# - name: make defconfig
|
|
# run: make raspberrypi4_defconfig
|
|
# working-directory: ./buildroot
|
|
# - name: make
|
|
# run: make all
|
|
# working-directory: ./buildroot
|