[CI] [UI tests] [Docker example] Build and test the docker example app, streamline it for size. #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker-example | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-and-test: | |
name: Build image | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Build example-docker | |
# run: | | |
# cd examples/docker | |
# docker build -t tte . | |
- name: Build example-docker | |
uses: nick-invision/retry@v3 | |
with: | |
timeout_minutes: 5 | |
retry_wait_seconds: 15 | |
max_attempts: 3 | |
retry_on: error | |
command: | | |
cd examples/docker | |
docker build -t tte . | |
on_retry_command: cd ../.. | |
- name: run docker image | |
run: | | |
docker run --init -d -p 0.0.0.0:4000:4000 tte | |
- name: test | |
run: | | |
wget --tries=10 --wait=30 http://localhost:4000 | |
cat index.html | grep "Theia-Trace Example Application" |