Skip to content

Commit 4410fc1

Browse files
committed
chore: move existing workflow in subdirectory
Relates #133 Signed-off-by: Gabriele Bartolini <[email protected]>
1 parent 1a93a00 commit 4410fc1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+10
-13
lines changed

.github/generate-strategy.sh

+2-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
set -eu
1010

1111
ROOT_DIR=$(cd "$(dirname "$0")/../"; pwd)
12-
source "${ROOT_DIR}/lib/repo_funcs.sh"
12+
BASE_DIRECTORY="${ROOT_DIR}/SYSTEM_IMAGES"
13+
source "${BASE_DIRECTORY}/lib/repo_funcs.sh"
1314

1415
# Define an optional aliases for some major versions
1516
declare -A aliases=(
@@ -21,10 +22,6 @@ DEFAULT_DISTRO="bullseye"
2122

2223
GITHUB_ACTIONS=${GITHUB_ACTIONS:-false}
2324

24-
cd "$(dirname "$(readlink -f "${BASH_SOURCE[0]}/..")")"
25-
BASE_DIRECTORY="$(pwd)"
26-
27-
2825
# Retrieve the PostgreSQL versions for Debian
2926
cd ${BASE_DIRECTORY}/Debian
3027
for version in */; do

.github/workflows/build.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- main
77
paths-ignore:
8-
- Debian/ClusterImageCatalog*.yaml
8+
- SYSTEM_IMAGES/Debian/ClusterImageCatalog*.yaml
99
workflow_dispatch:
1010

1111
env:
@@ -194,10 +194,10 @@ jobs:
194194

195195
- name: Update ClusterImageCatalog
196196
run: |
197-
yq eval-all '. as $item ireduce ({}; . *+ $item )' clusterimagecatalog/*-bullseye.yaml > Debian/ClusterImageCatalog-bullseye.yaml
198-
yq eval-all '. as $item ireduce ({}; . *+ $item )' clusterimagecatalog/*-bookworm.yaml > Debian/ClusterImageCatalog-bookworm.yaml
199-
ln -f -s ClusterImageCatalog-${DEFAULT_DISTRO}.yaml Debian/ClusterImageCatalog.yaml
200-
cat Debian/ClusterImageCatalog.yaml Debian/ClusterImageCatalog-bullseye.yaml Debian/ClusterImageCatalog-bookworm.yaml
197+
yq eval-all '. as $item ireduce ({}; . *+ $item )' clusterimagecatalog/*-bullseye.yaml > SYSTEM_IMAGES/Debian/ClusterImageCatalog-bullseye.yaml
198+
yq eval-all '. as $item ireduce ({}; . *+ $item )' clusterimagecatalog/*-bookworm.yaml > SYSTEM_IMAGES/Debian/ClusterImageCatalog-bookworm.yaml
199+
ln -f -s ClusterImageCatalog-${DEFAULT_DISTRO}.yaml SYSTEM_IMAGES/Debian/ClusterImageCatalog.yaml
200+
cat Debian/ClusterImageCatalog.yaml Debian/ClusterImageCatalog-bullseye.yaml SYSTEM_IMAGES/Debian/ClusterImageCatalog-bookworm.yaml
201201
202202
- name: Temporarily disable "include administrators" branch protection
203203
if: ${{ always() && github.ref == 'refs/heads/main' }}
@@ -215,7 +215,7 @@ jobs:
215215
author_name: CloudNativePG Automated Updates
216216
author_email: [email protected]
217217
message: 'Automatic ClusterImageCatalog update'
218-
add: 'Debian/ClusterImageCatalog*.yaml'
218+
add: 'SYSTEM_IMAGES/Debian/ClusterImageCatalog*.yaml'
219219

220220
- name: Enable "include administrators" branch protection
221221
uses: benjefferies/[email protected]

.github/workflows/update.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pip3 install --upgrade pip-tools pip
3333
export PATH=$HOME/.local/bin:$PATH
3434
echo "Updating Debian bullseye images"
35-
./Debian/update.sh -d bullseye
35+
./SYSTEM_IMAGES/Debian/update.sh -d bullseye
3636
3737
- uses: actions/setup-python@v5
3838
with:
@@ -48,7 +48,7 @@ jobs:
4848
pip3 install --upgrade pip-tools pip
4949
export PATH=$HOME/.local/bin:$PATH
5050
echo "Updating Debian bookworm images"
51-
./Debian/update.sh -d bookworm
51+
./SYSTEM_IMAGES/Debian/update.sh -d bookworm
5252
5353
- name: Diff
5454
run: |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)