Add action to verify devcontainer base #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify make cross in devcontainer base | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
publish_release: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Run `make cross` against devcontainer base | ||
run: | | ||
podman build -t devcontainer -f .devcontainer/Containerfile | ||
podman run devcontainer \ | ||
sh -c "git clone https://github.com/crc-org/crc --depth 1 && cd crc && make cross" |