Skip to content

Commit

Permalink
[DEV] Supply token to reusable workflows
Browse files Browse the repository at this point in the history
- token required for cloning (yet) private submodules
  • Loading branch information
FelixSchladt committed Sep 11, 2024
1 parent e82ecec commit 6a56c9d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ci_hw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,29 @@ jobs:
hw_rpi3:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/hw_rpi3.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

hw_rpi4:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/hw_rpi4.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

hw_odroidc2:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/hw_odroidc2.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

hw_sabre:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/hw_sabre.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

hw_nitrogen6sx:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/hw_nitrogen6sx.yml@integration
uses: TRENT-OS/trentos/.github/workflows/hw_nitrogen6sx.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}
10 changes: 9 additions & 1 deletion .github/workflows/ci_qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,23 @@ jobs:
zynq7000_qemu:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/qemu_zynq7000.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

sabre_qemu:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/qemu_sabre.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

zynqmp_qemu:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/qemu_zynqmp.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

qemu-arm-virt_qemu:
needs: check_label
uses: TRENT-OS/trentos/.github/workflows/qemu_qemu-arm-virt.yml@integration
uses: TRENT-OS/trentos/.github/workflows/qemu_qemu-arm-virt.yml@integration
secrets:
ORG_CLONE_PRV_SUBM: ${{ secrets.ORG_CLONE_PRV_SUBM }}

0 comments on commit 6a56c9d

Please sign in to comment.