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 25, 2024
1 parent 333eef0 commit 7492d96
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: null
jobs:
publish_release:
runs-on: ubuntu-24.04
steps:
- name: Run devcontainer build using Podman
run: |
podman build -t devcontainer -f .devcontainer/Containerfile .
- name: Run `make cross` against devcontainer
run: >
podman run devcontainer \
sh -c "git clone https://github.com/crc-org/crc --depth 1 && cd crc && make cross"

0 comments on commit 7492d96

Please sign in to comment.