Skip to content

Commit

Permalink
chore: refactor devcontainer workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gbraad authored and praveenkumar committed Jan 2, 2025
1 parent c08e41a commit 5c6743b
Showing 1 changed file with 9 additions and 4 deletions.
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

0 comments on commit 5c6743b

Please sign in to comment.