Skip to content

Commit 9b8c842

Browse files
committed
REMOVEME shorten build times
1 parent 2f32aaf commit 9b8c842

2 files changed

Lines changed: 3 additions & 149 deletions

File tree

.github/workflows/package_core.yml

Lines changed: 2 additions & 147 deletions
Original file line numberDiff line numberDiff line change
@@ -327,68 +327,9 @@ jobs:
327327
if: ${{ !cancelled() && needs.build-env.result == 'success' }}
328328
steps:
329329

330-
# only needs the test list generator and artifact information
331-
- uses: actions/checkout@v6
332-
with:
333-
fetch-depth: 0
334-
persist-credentials: false
335-
sparse-checkout: |
336-
extra/ci_test_list.sh
337-
extra/artifacts/
338-
339-
- uses: actions/download-artifact@v8
340-
with:
341-
name: ${{ env.CORE_ARTIFACT }}
342-
343330
- name: Set up core
344331
run: |
345-
tar xf ${CORE_ARTIFACT} # will create ArduinoCore-zephyr/
346-
echo "REPORT_FILE=$(echo ${FQBN} | tr ':' '-').json" >> $GITHUB_ENV
347-
348-
- name: Get test sketches
349-
run: |
350-
# sets ALL_TESTS and ALL_LIBRARIES env vars in GITHUB_ENV
351-
extra/ci_test_list.sh ${{ matrix.artifact }} ${{ matrix.variant }}
352-
353-
- name: Compile tests for ${{ matrix.board }}
354-
uses: pillo79/compile-sketches@parallel
355-
with:
356-
fqbn: ${{ env.FQBN }}
357-
platforms: |
358-
# Use Board Manager version first to install the tools
359-
- name: ${{ env.PLAT }}
360-
# ... then replace that with the local version
361-
- name: ${{ env.PLAT }}
362-
source-path: "ArduinoCore-zephyr"
363-
sketch-paths: |
364-
${{ env.ALL_TESTS }}
365-
libraries: |
366-
${{ env.ALL_LIBRARIES }}
367-
cli-compile-flags: |
368-
- '--build-property'
369-
- 'compiler.c.extra_flags=-Wno-type-limits -Wno-missing-field-initializers'
370-
- '--build-property'
371-
- 'compiler.cpp.extra_flags=-Wno-type-limits -Wno-missing-field-initializers'
372-
verbose: 'false'
373-
enable-deltas-report: 'false'
374-
enable-issues-report: 'true'
375-
always-succeed: 'true'
376-
377-
- name: Prepare log
378-
if: ${{ success() || failure() }}
379-
run: |
380-
# make sure to create an empty report if none was created
381-
[ ! -f sketches-reports/${REPORT_FILE} ] && mkdir -p sketches-reports && echo "{}" > sketches-reports/${REPORT_FILE}
382-
# remove base path of the core install from all file references to make logs cleaner
383-
sed -i -e 's!/home/runner/.arduino15/packages/arduino/hardware/zephyr/[^/]*/!!g' sketches-reports/${REPORT_FILE}
384-
385-
# archive the compile report for later
386-
- uses: actions/upload-artifact@v7
387-
if: ${{ success() || failure() }}
388-
with:
389-
name: test-report-${{ env.ARTIFACT_TAG }}
390-
path: sketches-reports/*
391-
retention-days: 1
332+
true
392333
393334
394335
@@ -409,95 +350,9 @@ jobs:
409350
GH_REPO: ${{ github.repository }}
410351
steps:
411352

412-
- uses: actions/checkout@v6
413-
with:
414-
fetch-depth: 0
415-
persist-credentials: false
416-
fetch-tags: true
417-
418-
- uses: actions/download-artifact@v8
419-
with:
420-
path: .
421-
pattern: "*-report-*"
422-
merge-multiple: true
423-
424353
- name: Generate workflow summary
425354
run: |
426-
# gather the array of job metadata (especially name and ID) for the current workflow run
427-
export WORKFLOW_JOBS=$(gh run view ${{ github.run_id }} --attempt ${{ github.run_attempt }} --json jobs --jq '.jobs')
428-
# Collect all CI data into a JSON file, then generate the report
429-
extra/ci_collect_data.py ${CORE_VER}.json
430-
extra/ci_generate_report.py ${CORE_VER}.json result summary full_log
431-
cat result
432-
433-
# Display the summary and full log in the step summary
434-
cat summary >> $GITHUB_STEP_SUMMARY
435-
cat full_log >> $GITHUB_STEP_SUMMARY
436-
437-
# Create a comment for PRs using the summary file
438-
if [ "${{ github.event_name }}" == "pull_request" ]; then
439-
mkdir -p comment-request
440-
echo "${{ github.event.pull_request.number }}" > comment-request/pr_number
441-
echo -e "## Built \`$CORE_VER\`\n" > comment-request/comment_body
442-
# strip LaTeX color commands and escape sequences for mail readability
443-
cat summary | sed -e 's!\${\\color{\S*}\(.*\)}\$!\1!g' -e 's!\\%!%!g' >> comment-request/comment_body
444-
fi
445-
446-
# Prepare latest size artifact file on push events
447-
if [ "${{ github.event_name }}" == "push" ]; then
448-
tar jchf size-reports-${{ needs.build-env.outputs.CORE_HASH }}.tar.bz2 arduino-*.json
449-
fi
450-
451-
- name: Compute code size changes
452-
if: ${{ github.event_name == 'pull_request' }}
453-
run: |
454-
export GITHUB_BASE_SHA=$(git describe --always origin/${GITHUB_BASE_REF})
455-
# errors due to race conditions with parallel branch runs should not fail the job
456-
extra/ci_calc_size_reports.py ${GITHUB_BASE_SHA} sketches-reports/ || true
457-
458-
# upload build metadata artifact, for upload to ci-builds
459-
- name: Archive build metadata information
460-
uses: actions/upload-artifact@v7
461-
with:
462-
name: build-metadata
463-
path: ${{ env.CORE_VER }}.json
464-
retention-days: 1
465-
466-
# upload comment request artifact (will be retrieved by leave_pr_comment.yml)
467-
- name: Archive comment information
468-
uses: actions/upload-artifact@v7
469-
if: ${{ github.event_name == 'pull_request' }}
470-
with:
471-
name: comment-request
472-
path: comment-request/
473-
retention-days: 1
474-
475-
# upload size delta report artifact (will be retrieved by report_size_deltas.yml)
476-
- name: Archive size deltas report information
477-
uses: actions/upload-artifact@v7
478-
if: ${{ github.event_name == 'pull_request' }}
479-
with:
480-
name: sketches-reports
481-
path: sketches-reports/
482-
retention-days: 1
483-
484-
# upload new official test size artifact (for AWS storage)
485-
- name: Archive sketch report information
486-
uses: actions/upload-artifact@v7
487-
if: ${{ github.event_name == 'push' }}
488-
with:
489-
name: size-reports
490-
path: size-reports-${{ needs.build-env.outputs.CORE_HASH }}.tar.bz2
491-
retention-days: 1
492-
archive: false
493-
494-
# The last line makes the job fail if the 'result' file does not contain "PASSED".
495-
# No further actions are allowed in case of error.
496-
- run: |
497-
cat result
498-
grep -q "PASSED" result # otherwise CI test failed
499-
500-
355+
true
501356
502357
# Clean up test results only if the verification actually passed, so that
503358
# they are still available for action re-runs in case of failure.

.github/workflows/upload_json.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727
submit-json-to-gh-pages:
2828
name: Update git JSON on Github Pages
2929
runs-on: ubuntu-latest
30-
if: ${{ github.repository == 'arduino/ArduinoCore-zephyr'
31-
&& github.event.workflow_run.event == 'push'
30+
if: ${{ github.event.workflow_run.event == 'push'
3231
&& !contains(github.event.workflow_run.head_branch, '/')
3332
&& github.event.workflow_run.conclusion == 'success' }}
3433
environment:

0 commit comments

Comments
 (0)