Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub CI pipeline actions #19

Merged
merged 1 commit into from
Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
---
name: Build ACAPs
name: Build

on:
pull_request:
types: [opened, reopened]
push:
on: push

jobs:
build:
build_acap:
name: Build ACAPs
runs-on: ubuntu-latest
env:
DEBIAN_FRONTEND: noninteractive
Expand All @@ -18,16 +16,16 @@ jobs:
steps:
- uses: actions/checkout@v3
# Test all Makefile targets and make sure the ACAP files are created
- name: Build ACAPs
- name: Build
run: DEBUG_WRITE=${{ matrix.debug_write }} make -j dockerbuild
- name: Verify ACAPs
- name: Verify
run: |
for a in armv7hf aarch64; do
echo "Verification of $a ACAP"
tar tzf *$a.eap >/dev/null
for f in *.eap; do
echo "Verification of $f:"
tar tzf "$f"
done
- name: Clean
run: |
make clean
echo 'Make sure no ACAP files are left'
echo 'Make sure no ACAP files are left:'
[ -z "$(ls ./*.eap ./*LICENSE.txt)" ]
7 changes: 2 additions & 5 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
---
name: Lint Code Base
name: Lint

on:
pull_request:
types: [opened, reopened]
push:
on: push

jobs:
build:
Expand Down