Skip to content

install pip, which seems to be missing from the 'medium' act image #29

install pip, which seems to be missing from the 'medium' act image

install pip, which seems to be missing from the 'medium' act image #29

Workflow file for this run

name: Test building and running dojo
on: push
jobs:
smoketest:
runs-on: ubuntu-latest
timeout-minutes: 23
steps:
- uses: actions/checkout@v3
- name: Info gathering
run: |
ls -la /tmp
df -h
- name: Install test dependencies
run: |
apt-get update
apt-get install -y python3-pip
python -m pip install --upgrade pip
pip install pytest
- name: Build container
run:
docker build -t dojo-test .
- name: Run Container
run: "docker run --privileged -d -v $PWD:/opt/pwn.college:shared -p 2222:22 -p 80:80 -p 443:443 --name dojo dojo-test"
- name: Wait for container to be ready
run: |
until docker exec dojo dojo is-setup-finished
do
sleep 5
docker exec dojo journalctl -u pwn.college | tail -n 5
done
- name: Wait for db to be ready
run: |
until docker exec dojo docker exec db mysql -h localhost -u ctfd -pctfd ctfd
do
sleep 5
docker exec dojo docker logs db | tail -n 5
done
- name: Run tests against container
run: |
pytest ./test || (docker exec dojo docker compose logs && false)