mirror of
https://github.com/akuker/RASCSI.git
synced 2024-12-01 13:51:43 +00:00
43088ab3bc
* Remove non-working Banana Pi code * Remove SonarQube suppressions which can be resolved by a code update * Update device detection
41 lines
910 B
YAML
41 lines
910 B
YAML
name: Build ARM binaries
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'cpp/**'
|
|
- '.github/workflows/build_code.yml'
|
|
- '.github/workflows/arm_cross_compile.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'cpp/**'
|
|
- '.github/workflows/build_code.yml'
|
|
- '.github/workflows/arm_cross_compile.yml'
|
|
types:
|
|
- assigned
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
branches:
|
|
- 'develop'
|
|
- 'main'
|
|
|
|
jobs:
|
|
fullspec:
|
|
uses: PiSCSI/piscsi/.github/workflows/arm_cross_compile.yml@develop
|
|
with:
|
|
connect-type: "FULLSPEC"
|
|
|
|
standard:
|
|
uses: PiSCSI/piscsi/.github/workflows/arm_cross_compile.yml@develop
|
|
with:
|
|
connect-type: "STANDARD"
|
|
|
|
# The fullspec connection board is the most common
|
|
debug-fullspec:
|
|
uses: PiSCSI/piscsi/.github/workflows/arm_cross_compile.yml@develop
|
|
with:
|
|
connect-type: "FULLSPEC"
|
|
debug-flag: true
|