Skip to content

Commit

Permalink
.github/workflows/testing.yml: debug all stages
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Jun 24, 2024
1 parent 71c304d commit 487a9e5
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' }
steps:
- run: id && pwd && ls -al
- run: id && pwd && env && 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'
Expand All @@ -34,7 +34,8 @@ jobs:
runs-on: ubuntu-latest
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' }
steps:
- { uses: actions/checkout@v3, with: { fetch-depth: 0 } } # Fix actions/checkout#290
- run: id && pwd && env && 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'
run: |
Expand All @@ -49,7 +50,8 @@ jobs:
runs-on: ubuntu-latest
container: { image: 'ghcr.io/tim-janik/anklang-ci:arch-latest' }
steps:
- { uses: actions/checkout@v4 }
- run: id && pwd && env && 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'
run: |
Expand All @@ -71,10 +73,9 @@ jobs:
FocalClangTidy:
if: ${{ ! contains(github.ref, 'refs/tags/') }}
runs-on: ubuntu-latest
container:
image: 'ghcr.io/tim-janik/anklang-ci:focal-latest'
options: --user root
container: { image: 'ghcr.io/tim-janik/anklang-ci:focal-latest' }
steps:
- run: id && pwd && env && 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'
Expand Down

0 comments on commit 487a9e5

Please sign in to comment.