Skip to content

Commit 8de0b0b

Browse files
NFC-82 Github temporary build fix
Signed-off-by: Sander Kondratjev <[email protected]>
1 parent baf06ee commit 8de0b0b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/maven-build-example.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ on:
1010
- 'example/**'
1111
- '.github/workflows/*example*'
1212

13-
defaults:
14-
run:
15-
working-directory: ./example
16-
1713
jobs:
1814
build:
1915
runs-on: ubuntu-latest
@@ -37,9 +33,13 @@ jobs:
3733
key: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}
3834
restore-keys: ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}
3935

40-
- name: Build
41-
run: mvn --batch-mode compile
36+
# TODO: revert later — currently forcing branch checkout for GitHub build
37+
- name: Build and install library
38+
run: mvn -B clean install -DskipTests
4239

43-
- name: Test and package
44-
run: mvn --batch-mode package
40+
# TODO: revert later — currently forcing branch checkout for GitHub build
41+
- name: Build example app
42+
run: |
43+
cd example
44+
mvn -B clean verify
4545

0 commit comments

Comments
 (0)