Skip to content

Commit

Permalink
#320 Idea to add CI pipeline with github actions
Browse files Browse the repository at this point in the history
- Add Felix HTTP subproject to actions
- Skip MissingWebsocketDependenciesIT as it somehow only fails in CI, not locally
- Fix whiteboard dependency on Jetty12
  • Loading branch information
paulrutter committed Jan 3, 2025
1 parent 25bb6d4 commit 86e5a30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ on:
branches: [ "master" ]
paths:
- 'scr/**'
- 'http/**'
pull_request:
branches: [ "master" ]
paths:
- 'scr/**'
- 'http/**'

permissions: {}

Expand All @@ -29,6 +31,8 @@ jobs:
maven-version: 3.9.7
- name: Felix SCR
run: mvn -B -V -Dstyle.color=always --file scr/pom.xml clean verify
- name: Felix HTTP
run: mvn -B -V -Dstyle.color=always "-Dit.test=!MissingWebsocketDependenciesIT" --file http/pom.xml clean install verify
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
Expand Down
2 changes: 1 addition & 1 deletion http/samples/whiteboard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.http.jetty12</artifactId>
<version>1.0.5-SNAPSHOT</version>
<version>1.0.20-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 86e5a30

Please sign in to comment.