Skip to content

Commit

Permalink
workflows and tests updated (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
1-ARIjitS authored Sep 7, 2024
1 parent 672def1 commit b204190
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy Javadoc to GitHub Pages
on:
push:
branches:
- JMEOS-working

- main
jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -40,4 +40,4 @@ jobs:
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: target/site/apidocs
publish_dir: target/site/apidocs
9 changes: 3 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@ name: Java CI with Maven

on:
push:
branches:
- main
- JMEOS-working
branches-ignore: gh-pages
pull_request:
branches:
- main
branches-ignore: gh-pages

jobs:
build:
Expand Down Expand Up @@ -106,4 +103,4 @@ jobs:

# Build Maven project
- name: Build with Maven
run: mvn clean install
run: mvn clean install
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.4.0</version>
<configuration>
<forkCount>4</forkCount>
<reuseForks>true</reuseForks>
<!-- <argLine>-Xmx4096m -XX:MaxMetaspaceSize=512m</argLine>-->
<!-- <skipTests>true</skipTests>-->
<!-- <forkCount>4</forkCount>-->
<!-- <reuseForks>true</reuseForks>-->
<!-- <argLine>-Xmx4096m -XX:MaxMetaspaceSize=512m</argLine>-->
<skipTests>true</skipTests>
</configuration>
</plugin>

Expand Down
2 changes: 0 additions & 2 deletions src/test/java/basic/TGeomPointTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -696,8 +696,6 @@ void testFromStringConstructor(TGeomPoint source, String type, TInterpolation in
assertEquals(interpolation, ti.interpolation());
assertEquals(ti.to_string(),expected);
}
// TPointInst i = new TPointInst("Point(1 1)@2019-09-01");
System.out.println(i.to_string());
}


Expand Down

0 comments on commit b204190

Please sign in to comment.