Revision 96344048632acd7871b0a92ac903fc07575517f4 authored by TolisChal on 07 December 2020, 16:23:16 UTC, committed by TolisChal on 07 December 2020, 16:23:16 UTC
2 parent s eb525ca + 77c446f
Raw File
cmake-windows.disactivated
##############################################################################
# GitHub Actions Workflow for volesti to build tests with GCC
#
# Copyright (c) 2020 Vissarion Fisikopoulos
#
# Licensed under GNU LGPL.3, see LICENCE file
##############################################################################
name: windows-test

on: [push, pull_request]

jobs:
  build:
    name: windows
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v1
      - run: mkdir build; 
             cd build;
             $url = "https://sourceforge.net/projects/lpsolve/files/lpsolve/5.5.2.5/lp_solve_5.5.2.5_dev_win64.zip/download";
             $output = "$lp_solve.zip";
             Invoke-WebRequest -Uri $url -OutFile $output -UserAgent  ([Microsoft.PowerShell.Commands.PSUserAgent]::InternetExplorer);
             unzip lp_solve.zip;
             cmake ../test;
             make;
back to top