Skip to content

Commit

Permalink
well well....
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Jan 12, 2024
1 parent 9f4521e commit 3d2c26a
Showing 1 changed file with 45 additions and 3 deletions.
48 changes: 45 additions & 3 deletions .github/workflows/bootloader.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,50 @@ env:
DEFAULT_DIRECTORY: ot3-firmware
TARGET: bootloader

defaults:
run:
shell: bash
working-directory: ot3-firmware

jobs:
run-non-executable-workflow:
uses: ./.github/workflows/non-executable-workflow.yaml
secrets: inherit
cross-compile-check:
name: "Cross-Compile/Check"
runs-on: "ubuntu-20.04"
timeout-minutes: 10
steps:
- name: Checkout github actions directory
uses: actions/checkout@v4
with:
sparse-checkout: |
.github/actions
sparse-checkout-cone-mode: false
path: actions

- name: Setup main
uses: ./actions/.github/actions/main-setup
with:
cache-version: ${{ secrets.CACHE_VERSION }}

- name: Cross-Compile/Check
uses: ./actions/.github/actions/cross-compile-check

host-compile-test:
name: "Host-Compile/Test"
runs-on: "ubuntu-20.04"
timeout-minutes: 10
steps:
- name: Checkout github actions directory
uses: actions/checkout@v4
with:
sparse-checkout: |
.github/actions
sparse-checkout-cone-mode: false
path: actions

- name: Setup main
uses: ./actions/.github/actions/main-setup
with:
cache-version: ${{ secrets.CACHE_VERSION }}

- name: Host-Compile/Test
uses: ./actions/.github/actions/host-compile-test

0 comments on commit 3d2c26a

Please sign in to comment.