We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df8e87 commit 7ca628fCopy full SHA for 7ca628f
.github/workflows/boards.yml
@@ -26,12 +26,11 @@ env:
26
27
jobs:
28
setup-chunks:
29
+ name: Setup Chunks
30
runs-on: ubuntu-latest
31
32
outputs:
- fqbns: ${{ env.FQBNS }}
33
- board-count: ${{ env.BOARD-COUNT }}
34
- test-mode: ${{ env.TEST_MODE }}
+ test-chunks: ${{ steps.set-test-chunks.outputs.test-chunks }}
35
36
steps:
37
- name: Checkout repository
@@ -43,10 +42,8 @@ jobs:
43
42
- name: Determine test mode and find boards
44
run: |
45
if [ "${{ github.event_name }}" = "pull_request" ]; then
46
- echo "TEST_MODE=new" >> "$GITHUB_ENV"
47
bash .github/scripts/find_boards.sh new ${{ github.repository }} ${{github.base_ref}}
48
else
49
- echo "TEST_MODE=all" >> "$GITHUB_ENV"
50
bash .github/scripts/find_boards.sh all
51
fi
52
0 commit comments