We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d69f3f commit 836b562Copy full SHA for 836b562
.github/workflows/linux.yml
@@ -127,7 +127,16 @@ jobs:
127
128
steps:
129
130
- - uses: actions/checkout@v2
+ # We can't use actions/checkout with the docker container, see:
131
+ # https://github.com/actions/checkout/issues/170
132
+ # https://github.com/actions/checkout/issues/295
133
+ # - uses: actions/checkout@v2
134
+ - name: Checkout
135
+ run: |
136
+ echo $GITHUB_REF $GITHUB_SHA
137
+ git clone --depth 1 https://github.com/$GITHUB_REPOSITORY.git .
138
+ git fetch origin $GITHUB_SHA:temporary-ci-branch
139
+ git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA)
140
141
- name: Install extra compiler
142
run: |
0 commit comments