Skip to content

Commit

Permalink
CI: show dependency tracking file at conclusion of community build run
Browse files Browse the repository at this point in the history
This is the file which tracks projects published during the community
build run, which are injected as dependency overrides into subsequently
built projects. It can be useful to inspect this file when debugging.
  • Loading branch information
griggt committed Mar 3, 2022
1 parent fa063b6 commit 1b0c27c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ jobs:
git submodule update --init --recursive --jobs 7
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestA"
- name: Show dependency tracking file
if: ${{ always() }}
run: cat community-build/dotty-community-build-deps || true

community_build_b:
runs-on: [self-hosted, Linux]
container:
Expand Down Expand Up @@ -275,6 +279,10 @@ jobs:
git submodule update --init --recursive --jobs 7
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestB"
- name: Show dependency tracking file
if: ${{ always() }}
run: cat community-build/dotty-community-build-deps || true

community_build_c:
runs-on: [self-hosted, Linux]
container:
Expand Down Expand Up @@ -318,6 +326,10 @@ jobs:
git submodule update --init --recursive --jobs 7
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestC"
- name: Show dependency tracking file
if: ${{ always() }}
run: cat community-build/dotty-community-build-deps || true

community_build_forward_compat:
runs-on: [self-hosted, Linux]
container:
Expand Down

0 comments on commit 1b0c27c

Please sign in to comment.