Workaround x task get tick count #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: carlosperate/[email protected] | |
with: | |
# GNU Embedded Toolchain for Arm release name (e.g. "10.3-2021.07"). | |
release: "10.3-2021.10" | |
# Name for an environmental variable to be created with the toolchain path. | |
path-env-var: "GCC_ARM_NONE_EABI_BIN_PATH" | |
- name: submodule_update | |
run: git submodule update --init --recursive | |
- name: build_all | |
run: ./shell/rebuild_all.sh | |