Skip to content

Commit 86e5a30

Browse files
committed
#320 Idea to add CI pipeline with github actions
- Add Felix HTTP subproject to actions - Skip MissingWebsocketDependenciesIT as it somehow only fails in CI, not locally - Fix whiteboard dependency on Jetty12
1 parent 25bb6d4 commit 86e5a30

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ on:
55
branches: [ "master" ]
66
paths:
77
- 'scr/**'
8+
- 'http/**'
89
pull_request:
910
branches: [ "master" ]
1011
paths:
1112
- 'scr/**'
13+
- 'http/**'
1214

1315
permissions: {}
1416

@@ -29,6 +31,8 @@ jobs:
2931
maven-version: 3.9.7
3032
- name: Felix SCR
3133
run: mvn -B -V -Dstyle.color=always --file scr/pom.xml clean verify
34+
- name: Felix HTTP
35+
run: mvn -B -V -Dstyle.color=always "-Dit.test=!MissingWebsocketDependenciesIT" --file http/pom.xml clean install verify
3236
- name: Upload Test Results
3337
if: always()
3438
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3

http/samples/whiteboard/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
<dependency>
9797
<groupId>org.apache.felix</groupId>
9898
<artifactId>org.apache.felix.http.jetty12</artifactId>
99-
<version>1.0.5-SNAPSHOT</version>
99+
<version>1.0.20-SNAPSHOT</version>
100100
<scope>provided</scope>
101101
</dependency>
102102
<dependency>

0 commit comments

Comments
 (0)