Skip to content

Commit

Permalink
add CI for client and model server in julia
Browse files Browse the repository at this point in the history
  • Loading branch information
annereinarz committed May 17, 2024
1 parent 6c8e437 commit 3e8cb2f
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/client-julia-example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: client-julia-example

on:
push:
pull_request:
branches:
- 'main'

jobs:

test:
runs-on: ubuntu-latest
container: ubuntu:latest

services:
model:
image: linusseelinger/model-exahype-tsunami:latest
ports:
- 4242:4242

steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Dependencies
run: |
apt update && DEBIAN_FRONTEND="noninteractive" apt install -y curl \
curl -fsSL https://install.julialang.org | sh -s -- -y
-
name: Build and run
run: |
cd clients/julia && julia juliaClient.jl
49 changes: 49 additions & 0 deletions .github/workflows/model-testmodel-julia.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: model-testmodel-julia

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@v1
-
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@v2
with:
context: models/testmodel-julia/
push: true
tags: linusseelinger/model-testmodel-julia:latest

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

services:
model:
image: linusseelinger/model-testmodel-julia:latest
ports:
- 4242:4242

steps:
-
name: Validate
run: |
docker run --network=host -e model_host=http://localhost:4242 linusseelinger/testing-protocol-conformity-current:latest
2 changes: 1 addition & 1 deletion models/testmodel-julia/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ ENV PATH $JULIA_PATH/bin:$PATH

RUN curl -fsSL https://install.julialang.org | sh -s -- -y

#CMD julia minimal-server.jl
CMD julia minimal-server.jl

0 comments on commit 3e8cb2f

Please sign in to comment.