Skip to content

Commit d5bdaf1

Browse files
authored
Merge pull request #443 from stackhpc/sync-parallel
Apply further tuning to the nightly syncs
2 parents 33393a0 + 948da22 commit d5bdaf1

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/package-sync-nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name: Nightly package repository sync
33
on:
44
schedule:
5-
# Daily at 23:17
6-
- cron: "00 21 * * *"
5+
# Daily at 20:00 UTC
6+
- cron: "00 20 * * *"
77
concurrency:
88
group: nightly-package-sync
99
env:
@@ -44,12 +44,12 @@ jobs:
4444
echo -n "${{ steps.matrix-build.outputs.matrix }}"
4545
4646
sync-matrix-run:
47-
name: Sync
47+
name: Package repository sync
4848
needs:
4949
- sync-matrix-build
5050
strategy:
5151
matrix: ${{ fromJson(needs.sync-matrix-build.outputs.matrix) }}
52-
max-parallel: 1
52+
max-parallel: 4
5353
fail-fast: false
5454
uses: stackhpc/stackhpc-release-train/.github/workflows/package-sync.yml@main
5555
with:

ansible/inventory/group_vars/all/package-repos

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ deb_package_repos:
3434
policy: immediate
3535
architectures: amd64
3636
components: main
37-
distributions: jammy-updates/zed jammy-updates/antelope jammy-updates/caracal noble-updates/epoxy
37+
distributions: jammy-updates/caracal noble-updates/epoxy
3838
mirror: true
3939
mode: verbatim
4040
base_path: ubuntu-cloud-archive/
@@ -332,6 +332,7 @@ rpm_package_repos:
332332
short_name: elasticsearch_logstash_kibana_7_x
333333
sync_group: third_party
334334
distribution_name: elasticsearch-logstash-kibana-7.x-
335+
sync: false
335336
# Note(matta): Sync content immediately as it can be removed from the upstream mirrors
336337
- name: Grafana
337338
url: https://rpm.grafana.com
@@ -702,20 +703,23 @@ rpm_package_repos:
702703
short_name: centos_stream_9_openstack_yoga
703704
sync_group: centos
704705
distribution_name: centos-stream-9-openstack-yoga-
706+
sync: false
705707
# Openstack Zed for CentOS Stream 9
706708
- name: CentOS Stream 9 - OpenStack Zed
707709
url: https://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-zed/
708710
base_path: centos/9-stream/cloud/x86_64/openstack-zed/
709711
short_name: centos_stream_9_openstack_zed
710712
sync_group: centos
711713
distribution_name: centos-stream-9-openstack-zed-
714+
sync: false
712715
# OpenStack Antelope for CentOS Stream 9
713716
- name: CentOS Stream 9 - OpenStack Antelope
714717
url: https://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-antelope/
715718
base_path: centos/9-stream/cloud/x86_64/openstack-antelope/
716719
short_name: centos_stream_9_openstack_antelope
717720
sync_group: centos
718721
distribution_name: centos-stream-9-openstack-antelope-
722+
sync: false
719723
# OpenStack Caracal for CentOS Stream 9
720724
- name: CentOS Stream 9 - OpenStack Caracal
721725
url: https://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/openstack-caracal/

0 commit comments

Comments
 (0)