File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: Go Driver Tests
22
33on :
44 push :
5- branches : [ "master", "PG16" ]
5+ branches : [ "master" ]
66
77 pull_request :
8- branches : [ "master", "PG16" ]
8+ branches : [ "master" ]
99
1010jobs :
1111 build :
2121 steps :
2222 - uses : actions/checkout@v3
2323
24- - name : Set tag based on branch
25- run : |
26- if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
27- if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
28- echo "TAG=latest" >> $GITHUB_ENV
29- elif [[ "$GITHUB_REF" == "refs/heads/PG16" ]]; then
30- echo "TAG=PG16_latest" >> $GITHUB_ENV
31- fi
32- elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then
33- if [[ "$GITHUB_BASE_REF" == "master" ]]; then
34- echo "TAG=latest" >> $GITHUB_ENV
35- elif [[ "$GITHUB_BASE_REF" == "PG16" ]]; then
36- echo "TAG=PG16_latest" >> $GITHUB_ENV
37- fi
38- fi
39-
4024 - name : Run apache/age docker image
4125 run : |
42- export TAG=$TAG
26+ export TAG=latest
4327 docker-compose up -d
4428
4529 - name : Set up Go
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Build / Regression
22
33on :
44 push :
5- branches : [ ' master', 'PG16' ]
5+ branches : [ " master" ]
66 pull_request :
7- branches : [ ' master', 'PG16' ]
7+ branches : [ " master" ]
88
99jobs :
1010 build :
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: JDBC Driver Tests
22
33on :
44 push :
5- branches : [ "master", "PG16" ]
5+ branches : [ "master" ]
66
77 pull_request :
8- branches : [ "master", "PG16" ]
8+ branches : [ "master" ]
99
1010jobs :
1111 build :
2323 distribution : ' zulu'
2424 java-version : ' 17'
2525
26- - name : Set tag based on branch
27- run : |
28- if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
29- if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
30- echo "TAG=latest" >> $GITHUB_ENV
31- elif [[ "$GITHUB_REF" == "refs/heads/PG16" ]]; then
32- echo "TAG=PG16_latest" >> $GITHUB_ENV
33- fi
34- elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then
35- if [[ "$GITHUB_BASE_REF" == "master" ]]; then
36- echo "TAG=latest" >> $GITHUB_ENV
37- elif [[ "$GITHUB_BASE_REF" == "PG16" ]]; then
38- echo "TAG=PG16_latest" >> $GITHUB_ENV
39- fi
40- fi
41-
4226 - name : Build and Test
4327 run : |
44- export TAG=$TAG
28+ export TAG=latest
4529 gradle build
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: Nodejs Driver Tests
22
33on :
44 push :
5- branches : [ "master", "PG16" ]
5+ branches : [ "master" ]
66
77 pull_request :
8- branches : [ "master", "PG16" ]
8+ branches : [ "master" ]
99
1010jobs :
1111 build :
1818 steps :
1919 - uses : actions/checkout@v3
2020
21- - name : Set tag based on branch
22- run : |
23- if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
24- if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
25- echo "TAG=latest" >> $GITHUB_ENV
26- elif [[ "$GITHUB_REF" == "refs/heads/PG16" ]]; then
27- echo "TAG=PG16_latest" >> $GITHUB_ENV
28- fi
29- elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then
30- if [[ "$GITHUB_BASE_REF" == "master" ]]; then
31- echo "TAG=latest" >> $GITHUB_ENV
32- elif [[ "$GITHUB_BASE_REF" == "PG16" ]]; then
33- echo "TAG=PG16_latest" >> $GITHUB_ENV
34- fi
35- fi
36-
3721 - name : Run apache/age docker image
3822 run : |
39- export TAG=$TAG
23+ export TAG=latest
4024 docker-compose up -d
4125
4226 - name : Set up Node
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: Python Driver Tests
22
33on :
44 push :
5- branches : [ "master", "PG16" ]
5+ branches : [ "master" ]
66
77 pull_request :
8- branches : [ "master", "PG16" ]
8+ branches : [ "master" ]
99
1010jobs :
1111 build :
1818 steps :
1919 - uses : actions/checkout@v3
2020
21- - name : Set tag based on branch
22- run : |
23- if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
24- if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
25- echo "TAG=latest" >> $GITHUB_ENV
26- elif [[ "$GITHUB_REF" == "refs/heads/PG16" ]]; then
27- echo "TAG=PG16_latest" >> $GITHUB_ENV
28- fi
29- elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then
30- if [[ "$GITHUB_BASE_REF" == "master" ]]; then
31- echo "TAG=latest" >> $GITHUB_ENV
32- elif [[ "$GITHUB_BASE_REF" == "PG16" ]]; then
33- echo "TAG=PG16_latest" >> $GITHUB_ENV
34- fi
35- fi
36-
3721 - name : Run apache/age docker image
3822 run : |
39- export TAG=$TAG
23+ export TAG=latest
4024 docker-compose up -d
4125
4226 - name : Set up python
You can’t perform that action at this time.
0 commit comments