Skip to content

Commit

Permalink
WIP: CI for demo building
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Oct 12, 2023
1 parent 7fd2294 commit 7acda07
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Demo

on: [push, pull_request]

jobs:
build:
name: Build demo
runs-on: ubuntu-latest
container: debian:bookworm
env:
DOCKERIZE_VERSION: v0.6.1
steps:
- run: apt-get update && apt-get install --yes git podman wget
- uses: actions/checkout@v4
- run: |
podman build -t demo -f securedrop/dockerfiles/focal/python3/DemoDockerfile .
# Install dockerize
wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz
# Start the container in the background
podman run -d -t -p 8080:8080 -p 8081:8081 --rm demo
# And wait for both ports to be up!
dockerize -wait http://127.0.0.1:8080 -timeout 30m
dockerize -wait http://127.0.0.1:8081 -timeout 30m

0 comments on commit 7acda07

Please sign in to comment.