We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaf2243 commit 47f3819Copy full SHA for 47f3819
.github/workflows/ci.yml
@@ -219,6 +219,12 @@ jobs:
219
apt-get install --no-install-recommends -y -- "${prerequisites[@]}"
220
shell: bash
221
- uses: actions/checkout@v4
222
+ - name: Take ownership of repo
223
+ # FIXME: Eliminate the need for this by improving the test suite not to rely on ownership
224
+ # of preexisting files, nor on whether, where, or how we are contained in a repo (except
225
+ # where gix-testtools checks ignores to suppress archives). Note that `safe.directory`
226
+ # isn't a fix, due to config and environment sanitization when running fixture scripts.
227
+ run: chown -R "$(whoami)" -- "$GITHUB_WORKSPACE"
228
- uses: dtolnay/rust-toolchain@stable
229
with:
230
toolchain: stable-i686-unknown-linux-gnu # Otherwise it may misdetect based on the amd64 kernel.
0 commit comments