aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
Commit message (Collapse)AuthorAgeFilesLines
* CI: use bash for get-base-ref-size job (#2305)NeroBurner2025-05-291-0/+1
| | | | | | | | Same change as done in https://github.com/InfiniTimeOrg/InfiniTime/commit/c3295d6d2a325f9a7418b15b943342635026926e But for get-base-ref-size job The variable substitution I introduced are bash features. So they don't work with sh. Update the size job to use `bash` instead of `sh` as shell
* CI: use bash for output-sizs-jobNeroBurner2025-05-271-0/+1
| | | | | | | | | | Firmware build works. But the build size job afterwards fails. The firmware build uses `shell: bash --noprofile --norc -e -o pipefail {0}` as shell. The size job uses `shell: sh -e {0}` The variable substitution I introduced are bash features. So they don't work with sh. Update the size job to use `bash` instead of `sh` as shell
* fix: fix short ref not getting set in github buildsJulian Vos2025-05-211-1/+3
|
* Add "Run on InfiniEmu" link to pull requests (#2150)Felipe Martínez2025-01-281-0/+6
|
* Fixes #2219: use artifact v4 instead of v3Jozef Mlich2025-01-232-7/+7
|
* ci: Normalise slash-containing `github.head_ref` valuesDom Rodriguez2024-11-171-5/+10
| | | | | | This fixes CI on #2121. Signed-off-by: Dom Rodriguez <shymega@shymega.org.uk>
* Update main.ymlFelipe Martínez2024-08-181-0/+5
|
* CI: install build resource dependency python3-pil packageReinhold Gschweicher2023-10-261-0/+4
| | | | | Used by script `lv_img_conv.py`, should be provided by docker image, but until then explicitly install in workflow.
* workflows: Fix InfiniSim CI buildFintasticMan2023-09-181-3/+3
| | | | | InfiniSim has removed the libpng submodule and moved it to a system dependency.
* pr-comment: Comment instructions instead of failingRiku Isokoski2023-03-271-3/+9
|
* branches: Update files to refer to main instead of developFinlay Davidson2023-03-024-6/+6
|
* workflow: Buildsize comment when simulator failsRiku Isokoski2023-01-311-0/+1
| | | | | | | | The workflow checks that the buildsize comparison succeeds. The download artifact step also checks that all of the main workflow succeeds. This isn't necessary, and causes the comment not to be created when the simulator build fails. This change disabled the success conclusion requirement.
* workflow: Updated workflow comment for allRiku Isokoski2023-01-312-24/+65
| | | | | | | | | | | | | | | | | The previous version failed, because it looked for the check from the branch in the fork, but looked for it in the main repo. Now uses the sha to get the commit on which checks were run. Previous description This works by uploading the data from the main workflow with low permissions as an artifact, then downloading the data in a workflow with higher permissions to post the comment. Third party actions are fixed at a commit, in case they get compromised. Also set the build-firmware VM to ubuntu-22.04, which was missed when updating workflow deps earlier.
* Revert "workflow: Comment build size on all PRs"Riku Isokoski2023-01-312-65/+24
| | | | This reverts commit 012c3d25f313148734b4720e376ec24ff6089453.
* workflow: Comment build size on all PRsRiku Isokoski2023-01-312-24/+65
| | | | | | | | | | | This works by uploading the data from the main workflow with low permissions as an artifact, then downloading the data in a workflow with higher permissions to post the comment. Third party actions are fixed at a commit, in case they get compromised. Also set the build-firmware VM to ubuntu-22.04, which was missed when updating workflow deps earlier.
* build-size-workflow: Fix when base gets updatedRiku Isokoski2023-01-281-10/+16
| | | | | | | | The github.event.pull_request.base.sha in the workflow doesn't get updated when there are new commits in the base branch. Instead always checkout the branch to check the sha manually and cache only the build. The ownership fix seems to still be necessary
* Update workflow dependencies (#1504)Riku Isokoski2023-01-122-6/+7
| | | | | | | | | * Update workflow dependencies ubuntu-latest vm has been updated from 20.04 to 22.04. To avoid sudden issues, use 22.04 explicitly. CMake doesn't need to be updated on 22.04, but ninja must be installed separately in the simulator workflow. actions/checkout@v2 uses deprecated Node.js 12. Update to v3 which uses 16
* workflow: echo build diffs for viewing without the commentRiku Isokoski2023-01-071-0/+8
|
* workflows: Disable build size comment in fork PRsRiku Isokoski2023-01-071-1/+5
| | | | | | | | Due to a security concern, comments can only be created in the context of branches in the repo. PRs from forks can't get the comment. https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#restrictions-on-repository-forks https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
* workflows: Add build size comparison workflowRiku Isokoski2023-01-072-3/+122
| | | | | | | | | | | | | | Add .github/workflows/getSize.sh to extract sizes of sections from the objfile build-firmware uses getSize.sh to output the section sizes. get-base-ref-size job added, which builds the base branch of the PR and outputs the section sizes. Caches are used to avoid unnecessary builds when the base branch hasn't been updated. leave-build-size-comment job added, which creates or updates a comment on the PR with the build size information from other jobs.
* workflows: Update workflow dependencyRiku Isokoski2023-01-071-7/+1
| | | | The workaround is no longer necessary
* Update clang-{format,tidy} to 14Finlay Davidson2023-01-041-2/+2
| | | | | Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
* CI: disable BUILD_RESOURCES for InfiniSim as already done in firmware (#1366)NeroBurner2022-10-111-1/+2
|
* CI worklow "build-firmware" : add the infinitime-resources packages to the ↵Jean-François Milants2022-10-111-0/+5
| | | | build artifacts.
* Fix docker issueRiku Isokoski2022-10-101-2/+3
|
* Add clang-tidy check to display warnings on GitHubRiku Isokoski2022-10-101-3/+35
|
* Merge remote-tracking branch 'upstream/develop' into workflow-ignore-mdmashuptwice2022-08-251-9/+43
|\
| * Merge CI to deduplicate events (#1279)Riku Isokoski2022-08-252-81/+42
| |
* | removed lv_sim.ymlmashuptwice2022-08-251-74/+0
| |
* | Merge remote-tracking branch 'upstream/develop' into workflow-ignore-mdmashuptwice2022-08-252-4/+0
|\|
| * Move all images to doc. Remove old images. (#1282)Riku Isokoski2022-08-212-4/+0
| |
* | workflow: ignore changes in *.md filesmashuptwice2022-08-112-0/+4
|/
* Fix Docker workflow not pushing on manual triggerFinlay Davidson2022-07-194-10/+16
| | | | | | | | Also fix issue where workflow fails on pull requests when the user who made the pull request doesn't have the secrets set. Also allow other workflows to be triggered manually. Also don't trigger any workflows on pull requests to master, as there shouldn't be any pull requests against master.
* Merge branch 'develop' of github.com:JF002/Pinetime into developJean-François Milants2022-07-091-7/+5
|\
| * Docker workflow use separate username for loginFinlay Davidson2022-07-091-7/+5
| |
* | Add 'workflow_dispatch' in the workflow file for Docker image generation to ↵Jean-François Milants2022-07-091-0/+2
|/ | | | allow manually starting the workflow.
* Only build Docker Images on develop, not masterFinlay Davidson2022-07-081-2/+2
|
* Make Docker workflow push to latest and commit shaFinlay Davidson2022-07-081-1/+13
|
* Don't try to cache to Docker Hub on pull requestFinlay Davidson2022-07-081-1/+13
|
* Use either a secret or infinitime as usernameFinlay Davidson2022-07-081-4/+6
| | | | | Uses either the DOCKER_HUB_USERNAME secret or just infinitime as the username for pushing to and pulling from Docker Hub.
* Require event_name to be push for Docker HubFinlay Davidson2022-07-081-2/+2
| | | | Instead of just checking if it's not pull_request
* Hardcode the Docker Hub username as infinitimeFinlay Davidson2022-07-081-4/+4
| | | | | This is so that pull requests that modify the docker image but don't have the DOCKER_HUB_USERNAME secret set won't fail.
* Create GH Actions workflow to build Docker imageFintasticMan2022-07-081-0/+42
|
* Don't build the firmware when only docs were modified (#1198)Riku Isokoski2022-07-052-0/+12
|
* Minor changes to clang-format workflow (#1177)FintasticMan2022-06-111-2/+1
|
* Remove extra linebreaksRiku Isokoski2022-05-271-4/+2
|
* Unzip DFU, so the artifact doesn't need to be unzipped by the user.Riku Isokoski2022-05-271-2/+4
|
* Rename uploaded files with source branch in workflowsRiku Isokoski2022-05-272-6/+6
|
* Cleanup workflowsRiku Isokoski2022-05-272-19/+0
|
* Edit workflow to use the new docker image : infinitime/infinitime-build.Jean-François Milants2022-05-261-1/+1
|