-
Notifications
You must be signed in to change notification settings - Fork 34
98 lines (98 loc) · 3.91 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Checks
on: [push, pull_request]
jobs:
linux:
name: PostgreSQL ${{ matrix.postgres }} (Linux)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
postgres: ["17.2", "16.6", "15.10", "14.15", "13.18", "12.22"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 15
- name: Test PostgreSQL bundle
if: ${{ !(startsWith(matrix.postgres, '10.') || startsWith(matrix.postgres, '9.')) }}
run: ./gradlew :debian-platforms:testAmd64DebianJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }}
timeout-minutes: 10
- name: Test PostgreSQL bundle (repacked)
if: ${{ startsWith(matrix.postgres, '10.') || startsWith(matrix.postgres, '9.') }}
run: ./gradlew :repacked-platforms:testAmd64LinuxJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }}
timeout-minutes: 10
- name: Test PostgreSQL bundle (compiled)
if: ${{ startsWith(matrix.postgres, '10.') || startsWith(matrix.postgres, '9.') }}
run: ./gradlew :custom-debian-platform:testCustomDebianJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }} -ParchName=amd64
timeout-minutes: 10
alpine-linux:
name: PostgreSQL ${{ matrix.postgres }} (Alpine Linux)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
postgres: ["17.2", "16.6", "15.10", "14.15", "13.18", "12.22"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 15
- name: Test PostgreSQL bundle
run: ./gradlew :alpine-platforms:testAmd64AlpineJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }}
timeout-minutes: 10
- name: Test PostgreSQL bundle (lite)
if: ${{ startsWith(matrix.postgres, '10.') || startsWith(matrix.postgres, '11.') || startsWith(matrix.postgres, '12.') || startsWith(matrix.postgres, '13.') || startsWith(matrix.postgres, '14.') || startsWith(matrix.postgres, '15.') }}
run: ./gradlew :alpine-lite-platforms:testAmd64AlpineLiteJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }}
timeout-minutes: 10
macos:
name: PostgreSQL ${{ matrix.postgres }} (MacOS)
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
postgres: ["17.2", "16.6", "15.10", "14.15", "13.18", "12.22"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 15
- name: Install psql executables
run: |
brew update
brew install postgresql
- name: Test PostgreSQL bundle
run: ./gradlew :repacked-platforms:testAmd64DarwinJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }}
timeout-minutes: 10
windows:
name: PostgreSQL ${{ matrix.postgres }} (Windows)
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
postgres: ["17.2", "16.6", "15.10", "14.15", "13.18", "12.22"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 15
- name: Install GNU Wget
run: choco install wget
- name: Update system paths
run: echo $PGBIN >> $GITHUB_PATH
shell: bash
- name: Test PostgreSQL bundle
run: ./gradlew :repacked-platforms:testAmd64WindowsJar -Pversion=${{ matrix.postgres }}-TEST -PpgVersion=${{ matrix.postgres }}
shell: bash
timeout-minutes: 10