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

Update core to 6.2.0 and OLF to 1.7.0 #133

Merged
merged 5 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
9 changes: 9 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ jobs:
with:
java-version: 17

- name: Checkout powsybl-open-loadflow latest sources
uses: actions/checkout@v1
with:
repository: powsybl/powsybl-open-loadflow
ref: refs/heads/main

- name: Build and install powsybl-open-loadflow with Maven
run: mvn --batch-mode -DskipTests=true --file ../powsybl-open-loadflow/pom.xml install

- name: Build with Maven
if: matrix.os == 'ubuntu-latest'
run: mvn --batch-mode -Pjacoco install
Expand Down
1 change: 1 addition & 0 deletions emf/src/test/java/com/powsybl/emf/IGMmergeTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ void testCompareSubnetworksMergeAgainstAssembled() {
dl.setQ0(0);
}
Network assembled = createCGM();
//TODO This test fails because in `assembled` the dangling lines have non-zero values for p0 and q0.
olperr1 marked this conversation as resolved.
Show resolved Hide resolved
compareNetwork(assembled, merged);
}

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@

<properties>
<java.version>17</java.version>
<powsyblcore.version>6.1.1</powsyblcore.version>
<powsyblopenloadflow.version>1.6.0</powsyblopenloadflow.version>
<powsyblcore.version>6.2.0-RC1</powsyblcore.version>
<powsyblopenloadflow.version>1.7.0-SNAPSHOT</powsyblopenloadflow.version>
<sonar.coverage.jacoco.xmlReportPaths>
../distribution-entsoe/target/site/jacoco-aggregate/jacoco.xml,
../../distribution-entsoe/target/site/jacoco-aggregate/jacoco.xml,
Expand Down
Loading