Skip to content
Draft
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
7 changes: 6 additions & 1 deletion ci-operator/config/openshift/rosa/openshift-rosa-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build_root:
image_stream_tag:
name: builder
namespace: ocp
tag: rhel-9-golang-1.24-openshift-4.21
tag: rhel-9-golang-1.25-openshift-4.21
resources:
'*':
requests:
Expand All @@ -16,19 +16,22 @@ resources:
tests:
- as: lint
commands: |
export GOTOOLCHAIN=auto
export GOLANGCI_LINT_CACHE=/tmp/.cache
unset GOFLAGS
make lint
container:
from: src
- as: build
commands: |
export GOTOOLCHAIN=auto
unset GOFLAGS
make
container:
from: src
- as: test
commands: |
export GOTOOLCHAIN=auto
make test verify
container:
from: src
Expand All @@ -39,6 +42,7 @@ tests:
from: src
- as: coverage
commands: |
export GOTOOLCHAIN=auto
export CODECOV_TOKEN=$(cat /tmp/secret/CODECOV_TOKEN)
make codecov
container:
Expand All @@ -48,6 +52,7 @@ tests:
name: rosa-codecov-token
- as: publish-coverage
commands: |
export GOTOOLCHAIN=auto
export CODECOV_TOKEN=$(cat /tmp/secret/CODECOV_TOKEN)
make codecov
container:
Expand Down