Skip to content

Commit 7f825f1

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/web/chart.js-4.4.7
2 parents 4dc452b + 53077b6 commit 7f825f1

File tree

1,911 files changed

+43572
-32258
lines changed

Some content is hidden

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

1,911 files changed

+43572
-32258
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ updates:
33
- package-ecosystem: "docker"
44
directory: "/"
55
schedule:
6-
interval: "daily"
6+
interval: "weekly"
77
labels:
88
- "Dependencies"
99
commit-message:
@@ -12,7 +12,7 @@ updates:
1212
- package-ecosystem: "pip"
1313
directory: "/"
1414
schedule:
15-
interval: "daily"
15+
interval: "weekly"
1616
labels:
1717
- "Dependencies"
1818
commit-message:
@@ -21,7 +21,7 @@ updates:
2121
- package-ecosystem: "pip"
2222
directory: "/tools"
2323
schedule:
24-
interval: "daily"
24+
interval: "weekly"
2525
labels:
2626
- "Dependencies"
2727
commit-message:
@@ -30,7 +30,7 @@ updates:
3030
- package-ecosystem: "pip"
3131
directory: "/web/regression"
3232
schedule:
33-
interval: "daily"
33+
interval: "weekly"
3434
labels:
3535
- "Dependencies"
3636
commit-message:
@@ -39,7 +39,7 @@ updates:
3939
- package-ecosystem: "npm"
4040
directory: "/runtime"
4141
schedule:
42-
interval: "daily"
42+
interval: "weekly"
4343
labels:
4444
- "Dependencies"
4545
commit-message:
@@ -48,7 +48,7 @@ updates:
4848
- package-ecosystem: "npm"
4949
directory: "/web"
5050
schedule:
51-
interval: "daily"
51+
interval: "weekly"
5252
labels:
5353
- "Dependencies"
5454
commit-message:

.github/workflows/check-container-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
build-container:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/check-doc-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
build-docs:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/check-javascript-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
check-javascript-style:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/check-python-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
build-python-package:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/check-python-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
check-python-style:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/check-tarball-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
build-tarball:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/check-translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
check-translations:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818

1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/run-feature-tests-epas.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,26 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
pgver: [12, 13, 14, 15, 16]
24+
pgver: [13, 14, 15, 16, 17]
2525

26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-22.04
2727

2828
steps:
2929
- uses: actions/checkout@v4
3030

3131
- name: Setup the EDB APT repo on Linux
3232
run: |
33-
sudo su -c 'echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list'
34-
sudo su -c 'echo "machine apt.enterprisedb.com login ${{ secrets.EDB_REPO_USERNAME }} password ${{ secrets.EDB_REPO_PASSWORD }}" > /etc/apt/auth.conf.d/edb.conf'
35-
sudo wget -q -O - https://apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add -
33+
curl -1sLf 'https://downloads.enterprisedb.com/${{ secrets.CLOUDSMITH_TOKEN }}/enterprise/setup.deb.sh' | sudo -E bash
3634
3735
- name: Install platform dependencies
3836
run: |
3937
sudo apt update
40-
sudo apt install -y libpq-dev libffi-dev libssl-dev libkrb5-dev zlib1g-dev edb-as${{ matrix.pgver }}-server edb-as${{ matrix.pgver }}-server-pldebugger edb-as${{ matrix.pgver }}-pgagent
38+
sudo apt install -y libpq-dev libffi-dev libssl-dev libkrb5-dev zlib1g-dev edb-as${{ matrix.pgver }}-server edb-as${{ matrix.pgver }}-server-pldebugger
39+
40+
- name: Install pgagent on Linux
41+
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.pgver <= 16 }}
42+
run: |
43+
sudo apt install -y edb-as${{ matrix.pgver }}-pgagent
4144
4245
- name: Create the tablespace directory
4346
run: |
@@ -58,7 +61,9 @@ jobs:
5861
sleep 2
5962
done
6063
61-
psql -U enterprisedb -d postgres -p 58${{ matrix.pgver }} -c 'CREATE EXTENSION IF NOT EXISTS pgagent;'
64+
- name: Create pgagent extension on Linux
65+
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.pgver <= 16 }}
66+
run: psql -U enterprisedb -d postgres -p 58${{ matrix.pgver }} -c 'CREATE EXTENSION IF NOT EXISTS pgagent;'
6267

6368
- name: Install Python dependencies
6469
run: make install-python-testing

.github/workflows/run-feature-tests-pg.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
pgver: [12, 13, 14, 15, 16]
23+
pgver: [13, 14, 15, 16, 17]
2424

25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626

2727
steps:
2828
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)