CI #15
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-v**' | |
- 'full-sonar-analysis-**' | |
pull_request: | |
jobs: | |
build: | |
name: Build OS ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# revert me os: [ubuntu-latest, windows-latest, macos-latest] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- name: Install Knitro (Linux) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
wget -nv -O knitro.tar.gz "$KNITRO_LINUX_URL" | |
mkdir -p /opt/knitro | |
tar xzf knitro.tar.gz -C /opt/knitro | |
echo "KNITRODIR=/opt/knitro/knitro-14.1.0-Linux64" >> "$GITHUB_ENV" | |
env: | |
KNITRO_LINUX_URL: ${{ secrets.KNITRO_LINUX_URL }} | |
- name: Install Knitro (Windows) | |
if: matrix.os == 'windows-latest' | |
shell: powershell | |
run: | | |
C:\msys64\usr\bin\wget.exe -nv -O knitro.zip "$env:KNITRO_WINDOWS_URL" | |
7z x -y knitro.zip -oC:\knitro | |
echo "KNITRODIR=C:\knitro\knitro-14.1.0-Win64" >> "$env:GITHUB_ENV" | |
env: | |
KNITRO_WINDOWS_URL: ${{ secrets.KNITRO_WINDOWS_URL }} | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
# temp until next OLF release | |
- name: Checkout powsybl-open-loadflow sources | |
uses: actions/checkout@v4 | |
with: | |
repository: powsybl/powsybl-open-loadflow | |
ref: external-ac-solver | |
path: powsybl-open-loadflow | |
- name: Build powsybl-open-loadflow | |
run: mvn -batch-mode --no-transfer-progress clean install -DskipTests | |
working-directory: ./powsybl-open-loadflow | |
- name: Build with Maven (Ubuntu / MacOS) | |
if: matrix.os != 'windows-latest' | |
run: | | |
./mvnw install:install-file -Dfile="$KNITRODIR/examples/Java/lib/bridj-0.7.0.jar" -DgroupId=com.artelys -DartifactId=bridj -Dversion=0.7.0 -Dpackaging=jar -DgeneratePom=true | |
./mvnw install:install-file -Dfile="$KNITRODIR/examples/Java/lib/Knitro-Interfaces-2.5-KN_14.1.0.jar" -DgroupId=com.artelys -DartifactId=knitro-interfaces -Dversion=14.1.0 -Dpackaging=jar -DgeneratePom=true | |
./mvnw --batch-mode -Pjacoco install | |
- name: Build with Maven (Windows) | |
if: matrix.os == 'windows-latest' | |
run: | | |
call mvnw.cmd install:install-file -Dfile="%KNITRODIR%\examples\Java\lib\bridj-0.7.0.jar" -DgroupId=com.artelys -DartifactId=bridj -Dversion=0.7.0 -Dpackaging=jar -DgeneratePom=true | |
call mvnw.cmd install:install-file -Dfile="%KNITRODIR%\examples\Java\lib\Knitro-Interfaces-2.5-KN_14.1.0.jar" -DgroupId=com.artelys -DartifactId=knitro-interfaces -Dversion=14.1.0 -Dpackaging=jar -DgeneratePom=true | |
mvnw.cmd --batch-mode install | |
shell: cmd | |
env: | |
ARTELYS_LICENSE: ${{ secrets.ARTELYS_LICENSE }} | |
# TODO | |
# - name: Run SonarCloud analysis | |
# if: matrix.os == 'ubuntu-latest' | |
# run: > | |
# ./mvnw --batch-mode -DskipTests sonar:sonar | |
# -Dsonar.host.url=https://sonarcloud.io | |
# -Dsonar.organization=powsybl-ci-github | |
# -Dsonar.projectKey=com.powsybl:powsybl-open-loadflow-knitro-solver | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |