Make gollum executable

This commit is contained in:
Dawa Ometto
2022-09-22 00:35:12 +02:00
committed by Dawa Ometto
parent c48c7dab0b
commit e7b324f9ff
2 changed files with 1 additions and 2 deletions
+1 -2
View File
@@ -47,10 +47,9 @@ jobs:
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
- name: Run gollum from Docker - name: Run gollum from Docker
run: | run: |
RUNNER_TRACKING_ID="" docker run -d --rm -p 4567:4567 -v $(pwd):/wiki -e CI=true ${{ env.CI_IMAGE }} & RUNNER_TRACKING_ID="" docker run --rm -p 4567:4567 -v $(pwd):/wiki -e CI=true ${{ env.CI_IMAGE }} &
netstat -lt netstat -lt
sleep 10 sleep 10
netstat -lt netstat -lt
curl http://127.0.0.1:4567
- name: Run capybara tests against Dockerized instance - name: Run capybara tests against Dockerized instance
run: "GOLLUM_CAPYBARA_URL=http://127.0.0.1:4567 bundle exec rake test:capybara" run: "GOLLUM_CAPYBARA_URL=http://127.0.0.1:4567 bundle exec rake test:capybara"
Regular → Executable
View File