Skip to content

Commit

Permalink
ci: Fix Docker build (#4078)
Browse files Browse the repository at this point in the history
This fixes the workflow job failing because of missing sources, and it
also fixes the job to run the compiler, not just build the image that
_could_ run the compiler.

Closes #4076
  • Loading branch information
joeyparrish committed Mar 29, 2022
1 parent 55eab21 commit 62c6052
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yaml
Expand Up @@ -79,5 +79,10 @@ jobs:
name: Docker
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.ref || github.ref }}

- name: Docker
run: docker build build/docker/
run: docker-compose -f build/docker/docker-compose.yml up

0 comments on commit 62c6052

Please sign in to comment.