mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
5542fa9e7c
* Re-add CONNECT_TYPE_CONNECT_TYPE_AIBOM and CONNECT_TYPE_GAMERNIUM
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
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"
|
|
|
|
aibom:
|
|
uses: PiSCSI/piscsi/.github/workflows/arm_cross_compile.yml@develop
|
|
with:
|
|
connect-type: "AIBOM"
|
|
|
|
gamernium:
|
|
uses: PiSCSI/piscsi/.github/workflows/arm_cross_compile.yml@develop
|
|
with:
|
|
connect-type: "GAMERNIUM"
|
|
|
|
# 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
|