-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github/workflows/testing.yml: test checkout fixups
Signed-off-by: Tim Janik <[email protected]>
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' } | ||
steps: | ||
- run: id && pwd && ls -al | ||
- { uses: actions/[email protected], with: { fetch-depth: 0 } } # Fix actions/checkout#290 | ||
- run: git fetch -f --tags && git submodule update --init --recursive && git describe | ||
- name: 'Configure build presets' | ||
|
@@ -33,7 +34,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' } | ||
steps: | ||
- { uses: actions/checkout@v4.1.1, with: { fetch-depth: 0 } } # Fix actions/checkout#290 | ||
- { uses: actions/checkout@v3, with: { fetch-depth: 0 } } # Fix actions/checkout#290 | ||
- run: git fetch -f --tags && git submodule update --init --recursive && git describe | ||
- name: 'Configure build presets' | ||
run: | | ||
|
@@ -48,7 +49,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
container: { image: 'ghcr.io/tim-janik/anklang-ci:arch-latest' } | ||
steps: | ||
- { uses: actions/checkout@v4.1.1, with: { fetch-depth: 0 } } # Fix actions/checkout#290 | ||
- { uses: actions/checkout@v4 } | ||
- run: git fetch -f --tags && git submodule update --init --recursive && git describe | ||
- name: 'Configure build presets' | ||
run: | | ||
|
@@ -70,7 +71,9 @@ jobs: | |
FocalClangTidy: | ||
if: ${{ ! contains(github.ref, 'refs/tags/') }} | ||
runs-on: ubuntu-latest | ||
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' } | ||
container: | ||
image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' | ||
options: --user root | ||
steps: | ||
- { uses: actions/[email protected], with: { fetch-depth: 0 } } # Fix actions/checkout#290 | ||
- run: git fetch -f --tags && git submodule update --init --recursive && git describe | ||
|