Skip to content

Change Workflows to use SMS ARC runners #376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 31, 2025
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ jobs:
steps:
- uses: actions/checkout@v4

# Python version must be pinned because of issue with Ubuntu permissions
# See https://github.com/actions/runner-images/issues/11499
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install Ansible collections
run: |
ansible-galaxy collection install -r requirements.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ env:
jobs:
container-sync:
name: Sync container repositories
runs-on: arc-release-train-runner
runs-on: arc-release-train-runner-sms
timeout-minutes: 720
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-sync-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
jobs:
sync-matrix-build:
name: Build package matrix of package repo sync jobs
runs-on: arc-release-train-runner
runs-on: arc-release-train-runner-sms
outputs:
matrix: ${{ steps.matrix-build.outputs.matrix }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-sync-version-test-pulp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
package-sync-version-test:
name: Sync specific package repository versions from Ark to Test Pulp
runs-on: arc-release-train-runner
runs-on: arc-release-train-runner-sms
steps:
- name: This workflow does not currently work. Test pulp does not exist.
run: exit 1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ env:
jobs:
package-sync-ark:
name: Sync package repositories in Ark
runs-on: arc-release-train-runner
runs-on: arc-release-train-runner-sms
timeout-minutes: 480
if: inputs.sync_ark
steps:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

package-sync-test:
name: Sync package repositories in test
runs-on: arc-release-train-runner
runs-on: arc-release-train-runner-sms
needs: package-sync-ark
timeout-minutes: 480
if: inputs.sync_test
Expand Down