Update version to 1.4.2 and add changelog entries for 1.4.0-1.4.2 #129
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: GraphViz Multi-Java Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| build-jar: | |
| name: Build JAR with Java 8 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Java 8 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 8 | |
| cache: 'maven' | |
| - name: Build JAR | |
| run: mvn clean package -DskipTests | |
| - name: Upload JAR artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-jar | |
| path: target/CS410-Exam-*.jar | |
| retention-days: 1 | |
| test-graphviz: | |
| name: Test JAR on Java ${{ matrix.java }} | |
| runs-on: ubuntu-latest | |
| needs: build-jar | |
| strategy: | |
| fail-fast: false # Continue testing other versions even if one fails | |
| matrix: | |
| java: [8, 11, 17, 21, 24, 25] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Java ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' # Eclipse Temurin (AdoptOpenJDK) | |
| java-version: ${{ matrix.java }} | |
| cache: 'maven' | |
| - name: Download JAR artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: test-jar | |
| path: downloaded-jar | |
| - name: Extract JAR to target directory | |
| run: | | |
| mkdir -p target/classes | |
| unzip -o downloaded-jar/CS410-Exam-*.jar -d target/classes | |
| - name: Print Java info | |
| run: | | |
| java -version | |
| echo "JAVA_HOME=$JAVA_HOME" | |
| - name: Run GraphViz tests | |
| run: mvn test -Dtest=GraphvizEngineTest | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-java${{ matrix.java }} | |
| path: | | |
| target/surefire-reports/ | |
| target/test-classes/ | |
| # Optional: Test Java 26 (early access) on Linux only | |
| test-java-26: | |
| name: Test on Java 26 (EA) - Linux | |
| runs-on: ubuntu-latest | |
| continue-on-error: true # Don't fail workflow if Java 26 fails | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Java 26 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '26-ea' | |
| cache: 'maven' | |
| - name: Run GraphViz tests | |
| run: mvn test -Dtest=GraphvizEngineTest |