Skip to content

Commit

Permalink
Use jore4-docker-compose repositor for Docker compose files when sett…
Browse files Browse the repository at this point in the history
…ing up e2e test environment
  • Loading branch information
janneronkko committed Jan 13, 2025
1 parent c87bc14 commit c179890
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions github-actions/setup-e2e-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,12 @@ runs:
- name: Download and extract e2e docker-compose release
run: |
mkdir -p ${{ github.workspace }}/docker
curl -L https://github.com/HSLdevcom/jore4-tools/releases/download/e2e-docker-compose/e2e-docker-compose.tar.gz --silent -o compose-bundle.tar.gz
tar -xzf compose-bundle.tar.gz -C ${{ github.workspace }}/docker/ | bash
rm compose-bundle.tar.gz
curl -s -L https://github.com/HSLdevcom/jore4-docker-compose-bundle/archive/refs/heads/main.tar.gz \
| tar \
-xz \
-C ${{ github.workspace }}/docker \
--strip-components 2 \
--wildcards 'jore4-docker-compose-bundle-main/docker-compose/*'
shell: bash

- name: Start e2e environment
Expand Down

0 comments on commit c179890

Please sign in to comment.