Skip to content

Commit

Permalink
Add action to verify devcontainer base
Browse files Browse the repository at this point in the history
  • Loading branch information
gbraad authored Dec 18, 2024
1 parent 333eef0 commit b1ebf2f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/verify-devcontainer-base.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Verify make cross in devcontainer base
on:
workflow_dispatch:
jobs:
publish_release:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run `make cross` against devcontainer base
run: |
docker run -v `pwd`:/workspaces/crc registry.access.redhat.com/ubi9/go-toolset:latest \
sh -c "cd /workspaces/crc && git config --global --add safe.directory /workspaces/crc && make cross"

0 comments on commit b1ebf2f

Please sign in to comment.