Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cypress-run to depend on a maven build #2970

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: github.repository == 'apache/jena'

runs-on: ${{ matrix.os }}
timeout-minutes: 5
timeout-minutes: 15

strategy:
fail-fast: false
Expand All @@ -42,7 +42,7 @@ jobs:
java-version: ${{ matrix.java_version }}

- name: Build with Maven
run: mvn -B --file pom.xml --projects jena-fuseki2/jena-fuseki-ui --also-make-dependents test install
run: mvn -B --file pom.xml clean install -Pdev -Dmaven.javadoc.skip=true

- name: Lint
working-directory: jena-fuseki2/jena-fuseki-ui
Expand All @@ -54,6 +54,7 @@ jobs:

runs-on: ${{ matrix.os }}
timeout-minutes: 15
needs: unit-test-and-build

strategy:
fail-fast: false
Expand Down