Skip to content

Commit

Permalink
fix(ci): start from freshly cloned repo
Browse files Browse the repository at this point in the history
the current self-hosted runner will have the repo initialized from
previous jobs, which will sometimes lead to weird behavior
  • Loading branch information
youben11 authored and BourgerieQuentin committed Jan 7, 2025
1 parent d5f4a95 commit 66bbebd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/concrete_python_tests_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,11 @@ jobs:
env:
python-version: "3.8"
steps:
- name: Checkout concrete
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
fetch-depth: 0
- name: Download concrete-compiler python-bindings
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
Expand Down Expand Up @@ -253,6 +258,11 @@ jobs:
needs: [setup-instance, build-python-bindings]
runs-on: ${{ needs.setup-instance.outputs.runner-name }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
fetch-depth: 0
- name: Download concrete-compiler python-bindings
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
Expand Down

0 comments on commit 66bbebd

Please sign in to comment.