We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08e41a commit 5c6743bCopy full SHA for 5c6743b
1 file changed
.github/workflows/verify-devcontainer.yml
@@ -7,8 +7,13 @@ on:
7
jobs:
8
verify-devcontainer:
9
runs-on: ubuntu-24.04
10
+ container:
11
+ image: registry.access.redhat.com/ubi9/go-toolset:latest
12
+ options: --cpus 4
13
steps:
- - name: Run `git clone` and `make cross` against devcontainer
- run: >
- podman run registry.access.redhat.com/ubi9/go-toolset:latest \
14
- sh -c "git clone https://github.com/crc-org/crc --depth 1 && cd crc && make cross"
+ - name: Run `git clone`
15
+ run: git clone https://github.com/crc-org/crc --depth 1
16
+ - name: Run `make cross`
17
+ run: |
18
+ cd crc
19
+ make cross
0 commit comments