Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: refactor devcontainer workflow #4533

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/verify-devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ on:
jobs:
verify-devcontainer:
runs-on: ubuntu-24.04
container:
image: registry.access.redhat.com/ubi9/go-toolset:latest
options: --cpus 4
steps:
- name: Run `git clone` and `make cross` against devcontainer
run: >
podman run registry.access.redhat.com/ubi9/go-toolset:latest \
sh -c "git clone https://github.com/crc-org/crc --depth 1 && cd crc && make cross"
- name: Run `git clone`
run: git clone https://github.com/crc-org/crc --depth 1
- name: Run `make cross`
run: |
cd crc
make cross
Loading