Skip to content

Commit

Permalink
Merge pull request #253 from GoSecure/docker-ci-changes
Browse files Browse the repository at this point in the history
GitHub Actions: added more smoke testing in docker task
  • Loading branch information
obilodeau authored Oct 7, 2020
2 parents e42f064 + d7f3fc1 commit 1f9f36a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,20 @@ jobs:
- uses: actions/checkout@v2
- name: Build Docker image
run: docker build -t pyrdp .
- name: Smoke test docker image
- name: "Smoke test docker image: pyrdp-convert.py"
run: docker run pyrdp pyrdp-convert.py -h
- name: "Smoke test docker image: pyrdp-player.py"
run: docker run pyrdp pyrdp-player.py -h
- name: "Smoke test docker image: pyrdp-mitm.py"
run: docker run pyrdp pyrdp-mitm.py -h
- name: Build slim Docker image
run: docker build -f Dockerfile.slim -t pyrdp .
- name: Smoke test docker slim image
# disabled until we fix #252
#- name: "Smoke test docker image: pyrdp-convert.py"
# run: docker run pyrdp pyrdp-convert.py -h
- name: "Smoke test docker image: pyrdp-player.py"
run: docker run pyrdp pyrdp-player.py -h
- name: "Smoke test docker image: pyrdp-mitm.py"
run: docker run pyrdp pyrdp-mitm.py -h

install-and-test-ubuntu:
Expand Down

0 comments on commit 1f9f36a

Please sign in to comment.