Skip to content

Commit

Permalink
workflow/push.yml - fix steps order to download toolchain only after …
Browse files Browse the repository at this point in the history
…repo with script downloading it is checked out
  • Loading branch information
ia committed Mar 27, 2024
1 parent a94c477 commit 30a7fe2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
- name: Install python modules
run: python3 -m pip install GitPython intelhex --upgrade

- name: Install standalone reference GCC toolchain
run: bash scripts/env.sh

- uses: actions/checkout@v4
with:
submodules: true
Expand All @@ -41,6 +38,9 @@ jobs:
- name: Set git meta info
run: echo "GITHUB_CI_PR_SHA=${{github.event.pull_request.head.sha}}" >> "${GITHUB_ENV}"

- name: Install standalone reference GCC toolchain
run: bash scripts/env.sh

- name: Build ${{ matrix.model }}
run: source build.env && make V=1 -j$(nproc) -C src/

Expand Down

0 comments on commit 30a7fe2

Please sign in to comment.