Skip to content

Commit

Permalink
CI: start the server
Browse files Browse the repository at this point in the history
  • Loading branch information
programLyrique committed Jan 15, 2025
1 parent 42c5f5a commit df39ce2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,16 @@ jobs:
cacheFrom: ${{ needs.build-devcontainer.outputs.imageName }}
push: never
runCmd: cd client; make build
#TODO: start the server
- uses: actions/download-artifact@v4
with:
name: snapshot
path: artifact
- name: start server
uses: devcontainers/[email protected]
with:
imageName: ${{ needs.build-devcontainer.outputs.imageName }}
cacheFrom: ${{ needs.build-devcontainer.outputs.imageName }}
push: never
runCmd: cd artifact; java -cp r-compile-server-0.1-SNAPSHOT.jar org.prlprg.server.CompileServer

#TODO: run the client tests

0 comments on commit df39ce2

Please sign in to comment.