Skip to content

Commit

Permalink
Added CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chun9l committed Feb 2, 2024
1 parent 78b6785 commit ccd9d24
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/model-gs2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: model-gs2

on:
push:
branches:
- 'main'

jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: models/gs2/
push: true
tags: linusseelinger/model-gs2:latest

test:
runs-on: ubuntu-latest
needs: build

services:
model:
image: linusseelinger/model-gs2:latest
ports:
- 4242:4242

steps:
-
name: Validate
run: |
docker run --network=host -e model_host=http://localhost:4242 linusseelinger/testing-protocol-conformity-current:latest

0 comments on commit ccd9d24

Please sign in to comment.