Skip to content

Commit

Permalink
fix: build invocation on windows
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Aug 14, 2023
1 parent 2dc05dd commit b68ab01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/module.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,4 @@ jobs:
- name: "Build: Example"
continue-on-error: ${{ inputs.labs }}
shell: bash
run: |
bazel build \
--config=ci \
//...
run: bazel build --config=ci "//..."
5 changes: 1 addition & 4 deletions .github/workflows/module.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,4 @@ jobs:
continue-on-error: ${{ inputs.labs }}
working-directory: ${{ matrix.directory }}
shell: bash
run: |
bazel \
${{ matrix.action || 'build' }} \
${{ matrix.target || '//...' }}
run: bazel ${{ matrix.action || 'build' }} "${{ matrix.target || '//...' }}"

0 comments on commit b68ab01

Please sign in to comment.