Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Huber <[email protected]>
  • Loading branch information
maxhbr committed Mar 13, 2024
1 parent ee19606 commit a48fdb2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_container_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# with:
# submodules: true

- name: submodule checkout
- name: submodule checkout (partially complete)
run: |
sed -i 's/[email protected]:/https:\/\/github.com\//g' .gitmodules
sed -i 's/[email protected]:/https:\/\/gitlab.com\//g' .gitmodules
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ jobs:
- uses: actions/checkout@v4
# with:
# submodules: true
- name: non recursive submodule checkout

- name: submodule checkout (partially complete)
run: |
mkdir ~/.ssh
ssh-keyscan -t rsa gitlab.com >> ~/.ssh/known_hosts
git submodule update --init
sed -i 's/[email protected]:/https:\/\/github.com\//g' .gitmodules
sed -i 's/[email protected]:/https:\/\/gitlab.com\//g' .gitmodules
git submodule sync --recursive || true
git submodule update --init --recursive || true
# git submodule update --init
- uses: haskell/actions/setup@v2
with:
Expand Down

0 comments on commit a48fdb2

Please sign in to comment.