Skip to content

Commit

Permalink
CI: sync/deinit submodules before running actions/checkout
Browse files Browse the repository at this point in the history
This action runs "git submodule foreach" early which will fail if a
submodule has been deleted but is still present in the repo (see
actions/checkout#354).
  • Loading branch information
smarter committed Mar 24, 2021
1 parent 4b32aeb commit 96118b7
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yaml
Expand Up @@ -52,6 +52,9 @@ jobs:
- name: Set JDK 16 as default
run: echo "/usr/lib/jvm/java-16-openjdk-amd64/bin" >> $GITHUB_PATH

- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -97,6 +100,9 @@ jobs:
- name: Set JDK 16 as default
run: echo "/usr/lib/jvm/java-16-openjdk-amd64/bin" >> $GITHUB_PATH

- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -132,6 +138,9 @@ jobs:
)"

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Git Checkout
uses: actions/checkout@v2

Expand All @@ -157,6 +166,9 @@ jobs:
)"

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Git Checkout
uses: actions/checkout@v2

Expand Down Expand Up @@ -190,6 +202,9 @@ jobs:
)"

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -230,6 +245,9 @@ jobs:
)"

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -270,6 +288,9 @@ jobs:
)"

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -310,6 +331,9 @@ jobs:
)"

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -358,6 +382,9 @@ jobs:
- name: Set JDK 8 as default
run: echo "/usr/lib/jvm/java-8-openjdk-amd64/bin" >> $GITHUB_PATH

- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -394,6 +421,9 @@ jobs:
SONATYPE_USER: ${{ secrets.SONATYPE_USER_ORGSCALALANG }}

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -428,6 +458,9 @@ jobs:
# Make sure you have the write permissions to the repo: https://github.com/lampepfl/dotty-website

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -474,6 +507,9 @@ jobs:
SONATYPE_USER: ${{ secrets.SONATYPE_USER_ORGSCALALANG }}

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -556,6 +592,9 @@ jobs:
# Make sure you have the write permissions to the repo: https://github.com/lampepfl/dotty-website

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down Expand Up @@ -601,6 +640,9 @@ jobs:
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}

steps:
- name: Cleanup submodules
run: git reset --hard HEAD && git submodule sync && git submodule deinit -f . || true

- name: Checkout cleanup script
uses: actions/checkout@v2

Expand Down

0 comments on commit 96118b7

Please sign in to comment.