Skip to content

Commit

Permalink
Fix DevContainer test harness
Browse files Browse the repository at this point in the history
  • Loading branch information
yvan-sraka committed Apr 16, 2024
1 parent 30f0b9b commit ded915b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/wait-and-upload.yml
Expand Up @@ -142,5 +142,6 @@ jobs:
IOG=${{ inputs.iog }}
- name: Run test command inside the Dev Container
run: docker run --rm ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ inputs.platform }}.${{ inputs.compiler-nix-name }}${{ inputs.target-platform }}${{ inputs.variant }}${{ inputs.iog }} \
/bin/bash -c "cabal update && cabal unpack hello && cd hello-* && cabal build"
run: |
docker run --rm ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ inputs.platform }}.${{ inputs.compiler-nix-name }}${{ inputs.target-platform }}${{ inputs.variant }}${{ inputs.iog }} \
bash -ic "cabal update && cabal unpack hello && cd hello-* && cabal build"

0 comments on commit ded915b

Please sign in to comment.