We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bb7270 commit 03ea66cCopy full SHA for 03ea66c
.github/workflows/push.yml
@@ -48,6 +48,19 @@ jobs:
48
- name: Build Sketches
49
run: bash ./.github/scripts/on-push.sh ${{ matrix.chunk }} 15
50
51
+ - name: Generate chunk compile commands
52
+ run: |
53
+ find ~/.arduino/build.tmp/ -iname "compile_commands.json" | xargs jq -s 'map(.[])' > ~/compile_commands.json
54
+
55
+ - name: Upload artifact
56
+ uses: actions/upload-artifact@v4
57
+ with:
58
+ name: build-job-${{ matrix.chunk }}
59
+ path: |
60
+ ~/.arduino/build.tmp/
61
+ ~/compile_commands.json
62
+ if-no-files-found: error
63
64
# Windows and MacOS
65
build-arduino-win-mac:
66
name: Arduino on ${{ matrix.os }}
0 commit comments