Skip to content

Commit

Permalink
update workflows (#1722)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuntoja authored Oct 2, 2024
1 parent 286092b commit 1be43a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/gorgone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ jobs:
secrets:
registry_username: ${{ secrets.DOCKER_REGISTRY_ID }}
registry_password: ${{ secrets.DOCKER_REGISTRY_PASSWD }}
registry_private_username: ${{ secrets.HARBOR_RPM_GPG_SIGNING_REPO_USERNAME }}
registry_private_token: ${{ secrets.HARBOR_RPM_GPG_SIGNING_REPO_TOKEN }}

deliver-sources:
runs-on: [self-hosted, common]
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ on:
required: true
registry_password:
required: true
registry_private_username:
required: true
registry_private_token:
required: true

jobs:
package:
Expand Down Expand Up @@ -127,11 +131,11 @@ jobs:
needs: [package]
runs-on: ubuntu-22.04
container:
image: ${{ vars.DOCKER_INTERNAL_REGISTRY_URL }}/rpm-signing:ubuntu
image: docker.centreon.com/centreon-private/rpm-signing:latest
options: -t
credentials:
username: ${{ secrets.registry_username }}
password: ${{ secrets.registry_password }}
username: ${{ secrets.registry_private_username }}
password: ${{ secrets.registry_private_token }}

steps:
- run: |
Expand Down

2 comments on commit 1be43a6

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
3 2 0 5 60.00 0s

Failed Tests

Name Message ⏱️ Duration Suite
BRCTS1 There should not exist queue map files. 0.000 s Reverse-Connection
BRCS1 There should not exist queue map files. 0.000 s Reverse-Connection

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
4 1 0 5 80.00 0s

Failed Tests

Name Message ⏱️ Duration Suite
BRGC1 There should not exist que map files. 0.000 s Reverse-Connection

Please sign in to comment.