Skip to content

Commit a44ca12

Browse files
authored
Adjust CI for Dev_Multiple_Labels branch (#2279)
Adjusted the CI files to work with the Dev_Multiple_Labels branch to enable PR checks. modified: .github/labeler.yml modified: .github/workflows/go-driver.yml modified: .github/workflows/installcheck.yaml modified: .github/workflows/jdbc-driver.yaml modified: .github/workflows/nodejs-driver.yaml modified: .github/workflows/python-driver.yaml modified: drivers/docker-compose.yml modified: drivers/jdbc/lib/src/test/java/org/apache/age/jdbc/BaseDockerizedTest.java
1 parent 48fca83 commit a44ca12

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed

.github/labeler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,8 @@ PG16:
1919
PG17:
2020
- base-branch: 'PG17'
2121

22+
Dev_Multiple_Labels:
23+
- base-branch: 'Dev_Multiple_Labels'
24+
2225
master:
2326
- base-branch: 'master'

.github/workflows/go-driver.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Go Driver Tests
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "Dev_Multiple_Labels" ]
66

77
pull_request:
8-
branches: [ "master" ]
8+
branches: [ "Dev_Multiple_Labels" ]
99

1010
jobs:
1111
build:

.github/workflows/installcheck.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build / Regression
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "Dev_Multiple_Labels" ]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [ "Dev_Multiple_Labels" ]
88

99
jobs:
1010
build:

.github/workflows/jdbc-driver.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: JDBC Driver Tests
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "Dev_Multiple_Labels" ]
66

77
pull_request:
8-
branches: [ "master" ]
8+
branches: [ "Dev_Multiple_Labels" ]
99

1010
jobs:
1111
build:

.github/workflows/nodejs-driver.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Nodejs Driver Tests
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "Dev_Multiple_Labels" ]
66

77
pull_request:
8-
branches: [ "master" ]
8+
branches: [ "Dev_Multiple_Labels" ]
99

1010
jobs:
1111
build:

.github/workflows/python-driver.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Python Driver Tests
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "Dev_Multiple_Labels" ]
66

77
pull_request:
8-
branches: [ "master" ]
8+
branches: [ "Dev_Multiple_Labels" ]
99

1010
jobs:
1111
build:

drivers/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3.3"
22
services:
33
db:
4-
image: apache/age:dev_snapshot_master
4+
image: apache/age:dev_snapshot_Dev_Multiple_Labels
55
environment:
66
- POSTGRES_USER=postgres
77
- POSTGRES_PASSWORD=agens

drivers/jdbc/lib/src/test/java/org/apache/age/jdbc/BaseDockerizedTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void beforeAll() throws Exception {
5252
String CORRECT_DB_PASSWORDS = "postgres";
5353

5454
agensGraphContainer = new GenericContainer<>(DockerImageName
55-
.parse("apache/age:dev_snapshot_master"))
55+
.parse("apache/age:dev_snapshot_Dev_Multiple_Labels"))
5656
.withEnv("POSTGRES_PASSWORD", CORRECT_DB_PASSWORDS)
5757
.withExposedPorts(5432);
5858
agensGraphContainer.start();

0 commit comments

Comments
 (0)