Skip to content
Open
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches:
- main
- release-*
- konflux/**
tags:
- '*'
pull_request:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ jobs:

- name: Store artifacts
if: always()
# Don't fail the job on upload errors (e.g. ECONNRESET) —
# these are debug logs, not consumed by downstream jobs.
# Test failures still fail the job via the Run Tests step.
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.vm }}-test-logs
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/konflux-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches:
- main
- release-*
- konflux/**
tags:
- '*'
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion .tekton/fact-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
pipelinesascode.tekton.dev/on-comment: "/konflux-retest fact-on-push"
pipelinesascode.tekton.dev/on-cel-expression: |
(event == "pull_request" && body.action != "ready_for_review") || (
event == "push" && target_branch.matches("^(main|release-.*|refs/tags/.*|konflux/.*)$")
event == "push" && target_branch.matches("^(main|release-.*|refs/tags/.*)$")
)
labels:
appstudio.openshift.io/application: acs-4-10
Expand Down
7 changes: 4 additions & 3 deletions tests/containers/self-deleter/Containerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM rust:1.84-alpine AS builder
FROM quay.io/centos/centos:stream9 AS builder

WORKDIR /app

COPY . .
RUN cargo build --release
RUN dnf install -y rust cargo && \
cargo build --release

FROM alpine:3.23
FROM quay.io/centos/centos:stream9-minimal

COPY --from=builder /app/target/release/self-deleter /usr/local/bin

Expand Down
Loading