Skip to content

Commit 7afff1a

Browse files
ci: Run CI workslflows with projects using the latest audio refactor.
1 parent a6af398 commit 7afff1a

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545
uses: actions/checkout@v4
4646
with:
4747
repository: 'lancaster-university/microbit-v2-samples'
48+
# FIXME: Temporarily check out the audio-refactor branch for testing
49+
ref: 'audio-refactor'
4850
# We need to use the checkout action (instead of build.py cloning the
4951
# repository) so that on PRs we can get the commit from the PR merge
5052
- name: Clone this repository in the libraries folder

.github/workflows/micropython.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,16 @@ jobs:
1616
with:
1717
repository: 'microbit-foundation/micropython-microbit-v2'
1818
submodules: 'true'
19+
# FIXME: Temporarily check out the audio-recording branch for testing
20+
ref: 'audio-recording'
1921
- name: Manually clone microbit-v2-samples in the lib/codal/libraries folder
2022
uses: actions/checkout@v4
2123
with:
2224
path: lib/codal/libraries/codal-microbit-v2
2325
fetch-depth: '0'
2426
submodules: 'recursive'
27+
# FIXME: Temporarily check out the audio-recording branch for testing
28+
ref: 'audio-refactor'
2529
- name: Setup arm-none-eabi-gcc v10.3
2630
uses: carlosperate/arm-none-eabi-gcc-action@v1
2731
with:

.github/workflows/size-diff.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ jobs:
4747
repository: 'lancaster-university/microbit-v2-samples'
4848
# Unless manually triggered via workflow_dispatch this will be an empty
4949
# string, checking out the default branch
50-
ref: ${{ github.event.inputs.samples-commit }}
50+
# FIXME: Temporarily check out the audio-refactor branch for testing
51+
# ref: ${{ github.event.inputs.samples-commit }}
52+
ref: 'audio-refactor'
5153
# We need to use the checkout action (instead of build.py cloning the
5254
# repository) so that on PRs we can get the commit from the PR merge
5355
- name: Clone this repository in the libraries folder

0 commit comments

Comments
 (0)