Skip to content

Commit

Permalink
Fix binary name
Browse files Browse the repository at this point in the history
  • Loading branch information
uweseimet committed Nov 29, 2023
1 parent a29a92e commit 20e46e7
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/arm_cross_compile.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Cross-compile for arm

on:
workflow_call:
inputs:
Expand Down
28 changes: 25 additions & 3 deletions .github/workflows/build_code.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,37 @@
name: Compile on macos
name: Cross-compile for arm

on:
workflow_dispatch:
push:
paths:
- 'cpp/**'
- '.github/workflows/macos_compile.yml'
- '.github/workflows/arm_cross_compile.yml'
pull_request:
paths:
- 'cpp/**'
- '.github/workflows/arm_cross_compile.yml'
types:
- assigned
- opened
- synchronize
- reopened
branches:
- 'develop'
- 'main'

jobs:
fullspec:
uses: uweseimet/scsi2pi/.github/workflows/arm_cross_compile.yml@main
with:
connect-type: "FULLSPEC"

standard:
uses: uweseimet/scsi2pi/.github/workflows/arm_cross_compile.yml@main
with:
connect-type: "STANDARD"

debug-fullspec:
uses: uweseimet/scsi2pi/.github/workflows/macos_compile.yml@main
uses: uweseimet/scsi2pi/.github/workflows/arm_cross_compile.yml@main
with:
connect-type: "FULLSPEC"
debug-flag: true
2 changes: 1 addition & 1 deletion .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: make -j $(nproc) test

- name: Run unit tests
run: bin/scsi2pi_test
run: bin/s2p_test

sonarcloud:
runs-on: ubuntu-22.04
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/macos_compile.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Compile on macos

on:
workflow_call:
inputs:
Expand Down

0 comments on commit 20e46e7

Please sign in to comment.