Add Winsock dependency (#6) #105
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: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ 'ubuntu-latest', 'windows-latest' ] | |
java: [ '17', '18', '19', '20', '21' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: zulu | |
- name: Setup Matlab (Linux only) | |
uses: matlab-actions/setup-matlab@v1 | |
if: runner.os == 'Linux' | |
- name: Setup Radar Waveform code (Linux only) | |
if: runner.os == 'Linux' | |
run: | | |
cd native/Radar/bin | |
wget https://perspectival-classi.000webhostapp.com/code/radar_many.zip \ | |
|| wget https://github.com/MOEAFramework/Archive/raw/main/evanhughes/radar_many.zip | |
unzip radar_many.zip | |
cp web_code/testpris.p testpris.p | |
- name: Build native programs | |
run: make -C native | |
- name: Build and test with Maven | |
run: mvn package | |
- name: Test with latest MOEA Framework JAR (Linux only) | |
if: false && runner.os == 'Linux' | |
run: | | |
VERSION=$(curl https://api.github.com/repos/MOEAFramework/MOEAFramework/releases/latest | jq '.tag_name' | grep -oEi '[0-9]+\.[0-9]+(\.[0-9]+)?') | |
wget https://github.com/MOEAFramework/MOEAFramework/releases/download/v${VERSION}/MOEAFramework-${VERSION}.tar.gz | |
tar -xzf MOEAFramework-${VERSION}.tar.gz | |
MOEAFRAMEWORK_ROOT=$(realpath -s MOEAFramework-${VERSION}) | |
ln -s $(realpath -s native/) ${MOEAFRAMEWORK_ROOT}/native | |
cp target/real-world-benchmarks-[0-9].[0-9].[0-9].jar ${MOEAFRAMEWORK_ROOT}/lib | |
rm native/shared/* | |
cp ${MOEAFRAMEWORK_ROOT}/examples/moeaframework.[ch] native/shared | |
make -C native | |
cd ${MOEAFRAMEWORK_ROOT} | |
java -cp "lib/*" org.moeaframework.analysis.tools.Solve -a NSGAII -b LRGV -n 1000 -f output.set |