Skip to content

Commit

Permalink
[GHA] maybe fix CI by checkout out LFS
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Oct 12, 2023
1 parent 709ae71 commit 1f4ceb6
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
# Setup Environment
- uses: actions/checkout@v3

# Some tests in polkadart need that, but it is also
# needed simply running pub get for some reason.
# We can remove that when we no longer need the
# git dependency for polkadart.
- name: Check out code (LFS)
uses: nschloe/[email protected]

- uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/android_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ jobs:
# Setup Environment
- uses: actions/checkout@v3

# Some tests in polkadart need that, but it is also
# needed simply running pub get for some reason.
# We can remove that when we no longer need the
# git dependency for polkadart.
- name: Check out code (LFS)
uses: nschloe/[email protected]

- uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/fdroid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ jobs:
# Setup Environment
- uses: actions/checkout@v3

# Some tests in polkadart need that, but it is also
# needed simply running pub get for some reason.
# We can remove that when we no longer need the
# git dependency for polkadart.
- name: Check out code (LFS)
uses: nschloe/[email protected]


- name: Check fdroid setup
run: ./scripts/fdroid_init.sh

Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ios_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ jobs:
# Setup Environment
- uses: actions/checkout@v3

# Some tests in polkadart need that, but it is also
# needed simply running pub get for some reason.
# We can remove that when we no longer need the
# git dependency for polkadart.
- name: Check out code (LFS)
uses: nschloe/[email protected]

- name: "Prepare environment for ios"
working-directory: ./scripts
run: ./ios_init_env.sh
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ jobs:
# Setup Environment
- uses: actions/checkout@v3

# Some tests in polkadart need that, but it is also
# needed simply running pub get for some reason.
# We can remove that when we no longer need the
# git dependency for polkadart.
- name: Check out code (LFS)
uses: nschloe/[email protected]

- name: Install flutter wrapper
run: ./scripts/install_flutter_wrapper.sh

Expand Down

0 comments on commit 1f4ceb6

Please sign in to comment.