Skip to content

Commit

Permalink
Add GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dns13 committed Mar 6, 2024
1 parent 1bd31ca commit 3168b07
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Build
on: [push]
jobs:
arm-bemos-linux-musleabihf:
runs-on: ubuntu-latest
container: ghcr.io/bestsens/musl-build-image:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
build/
key: ${{ runner.os }}-arm
restore-keys: ${{ runner.os }}-arm
- name: Build
env:
CCACHE_DIR: .cache/ccache
run: |
mkdir -p build
cd build
cmake .. -GNinja \
-DGIT_BRANCH=${{ github.head_ref }} \
-DGIT_COMMIT_HASH=${{ github.sha }} \
-DCPM_SOURCE_CACHE=../.cache/CPM \
-DBUILD_TESTS=OFF \
-DCMAKE_TOOLCHAIN_FILE=../libs/bone_helper/cmake/arm-bemos-linux-musleabihf.cmake
samu
- name: Clean up hierachy
run: cp LICENSE build/LICENSE
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: armv7
path: |
build/bemos_modbus
build/bemos_modbus.dbg
build/LICENSE
x86_64-linux-gnu:
runs-on: ubuntu-latest
container: ghcr.io/bestsens/fedora-build-image:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup cache
uses: actions/cache@v4
continue-on-error: false
with:
path: |
build/
key: ${{ runner.os }}-linux
restore-keys: ${{ runner.os }}-linux
- name: Build
env:
CCACHE_DIR: .cache/ccache
run: |
mkdir -p build
cd build
cmake .. -GNinja \
-DGIT_BRANCH=${{ github.head_ref }} \
-DGIT_COMMIT_HASH=${{ github.sha }} \
-DCPM_SOURCE_CACHE=../.cache/CPM
samu
- name: Clean up hierachy
run: cp LICENSE build/LICENSE
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: x86_64
path: |
build/bemos_modbus
build/bemos_modbus.dbg
build/LICENSE

0 comments on commit 3168b07

Please sign in to comment.