mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-26 13:49:21 +00:00
74eef6f9cc
* Update revision for release
* Create sonarcloud.yml
* Update sonarcloud.yml
* Update sonarcloud.yml
* Update sonarcloud.yml
* Update sonarcloud.yml
* Delete sonarcloud.yml
* Update revision number for release
* Remove SonarCloud cache setup as it is now offered by default (#1135)
No need to configure the cache anymore, SonarCloud now has an automatic analysis caching. See https://docs.sonarcloud.io/advanced-setup/languages/c-c-objective-c/#analysis-cache.
* Revert "Remove SonarCloud cache setup as it is now offered by default (#1135)" (#1144)
This reverts commit 3ad668cfd1
.
* Update web.yml
* Update cpp.yml
* Update web.yml
* Update build_code.yml
* Update build_code.yml
* Update cpp.yml
* Update web.yml
---------
Co-authored-by: Tony Kuker <akuker@gmail.com>
Co-authored-by: Massimo Paladin <massimo.paladin@gmail.com>
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
|