Skip to content
Snippets Groups Projects
Commit 837d8961 authored by Javier Neira 's avatar Javier Neira Committed by mergify-bot
Browse files

Restore custom checkout

parent c0bd42ae
Branches gb/no-reconfigure-test-flags
No related tags found
No related merge requests found
......@@ -127,7 +127,16 @@ jobs:
steps:
- uses: actions/checkout@v2
# We can't use actions/checkout with the docker container, see:
# https://github.com/actions/checkout/issues/170
# https://github.com/actions/checkout/issues/295
# - uses: actions/checkout@v2
- name: Checkout
run: |
echo $GITHUB_REF $GITHUB_SHA
git clone --depth 1 https://github.com/$GITHUB_REPOSITORY.git .
git fetch origin $GITHUB_SHA:temporary-ci-branch
git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA)
- name: Install extra compiler
run: |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment