Skip to content

Commit

Permalink
BWS-PKG - GitHub Actions - Pull images in separate run for both compo…
Browse files Browse the repository at this point in the history
…se files
  • Loading branch information
kylemhall committed Jan 9, 2024
1 parent 0cc347e commit 3961663
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,25 @@ jobs:
echo "RUN_TESTS_AND_EXIT=yes" >> $GITHUB_ENV
echo "KOHA_IMAGE=23.11" >> $GITHUB_ENV
- name: Get docker-compose version
run: |
docker-compose -v
- name: Set up koha-testing-docker
run: |
sudo sysctl -w vm.max_map_count=262144
wget -O docker-compose.yml https://gitlab.com/koha-community/koha-testing-docker/raw/23.11/docker-compose.yml
wget -O docker-compose.yml https://gitlab.com/koha-community/koha-testing-docker/raw/23.11/docker-compose.es7.yml
wget -O docker-compose.es7.yml https://gitlab.com/koha-community/koha-testing-docker/raw/23.11/docker-compose.es7.yml
mkdir -p env
wget -O env/defaults.env https://gitlab.com/koha-community/koha-testing-docker/raw/23.11/env/defaults.env
cp env/defaults.env .env
docker-compose pull
pwd
ls -alh
- name: Show files
run: |
pwd
ls -alh
- name: Pull docker images
run: |
docker compose -f docker-compose.es7.yml -f docker-compose.yml pull
# - name: Setup Debug Session
# uses: csexton/debugger-action@master
Expand Down

0 comments on commit 3961663

Please sign in to comment.