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

chore: joined build tests workflows in verify_build #583

Merged
merged 8 commits into from
Nov 24, 2022
Merged
Show file tree
Hide file tree
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
26 changes: 0 additions & 26 deletions .github/workflows/build.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/build8.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/pr_test.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release to Github Packages using maven deploy
name: Release to Github Packages

on:
push:
Expand All @@ -7,7 +7,6 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand All @@ -18,7 +17,7 @@ jobs:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Get the version from tag
- name: Get the version number from the pushed tag
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
- name: Deploy to Github Package Registry
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release_with_jars.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create draft release with jar artifacts
name: Create release (draft)
# Workflow is triggered when any pom-file is updated in master-branch
# If both pom-files have the same version number it
# - builds NeqSim-jars both in Java 8 and Java 11
Expand All @@ -9,9 +9,9 @@ on:
workflow_dispatch:
push:
branches:
- master
- main
- release/*
- master
- main
- release/*
paths:
- 'pom*.xml'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Jacoco Distributed Exec and Aggregation2

name: Test coverage report
on:
push:
tags:
- v*
workflow_dispatch:
# push:
# tags:
# - v*

jobs:
unit-tests:
Expand Down
60 changes: 60 additions & 0 deletions .github/workflows/verify_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Assert package builds, tests run and javadoc builds

on:
workflow_dispatch:
push:
branches: # Only run for changes in master branch and any releases branch
- master
- 'releases/**'
paths: # Only run if some java-file is updated
- '*.java'
pull_request:
branches:
- master

jobs:
test_javadoc:
name: Verify that javadoc can be built
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
- name: Test with Maven
run: mvn javadoc:javadoc

test_java_8:
name: Verify package builds with java 8
runs-on: ubuntu-latest
needs: test_javadoc

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
- name: Test with Maven
run: mvn -B test --file pomJava8.xml

test_java:
name: Verify package builds
runs-on: ubuntu-latest
needs: test_java_8 # Skip if java-8 tests fails

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
- name: Test with Maven
run: mvn -B test --file pom.xml
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ nbdist/
# End of https://www.gitignore.io/api/java,maven,netbeans
/bin/
src/main/java/neqsim/util/database/NeqSimDataBase2.java
exportJacoco/

neqsim.iml
.classpath
Expand Down