Skip to content

Merge pull request #29 from timmyL17/master #22

Merge pull request #29 from timmyL17/master

Merge pull request #29 from timmyL17/master #22

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: WindowsBuild
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Checkout submodules
shell: bash
run: |
git submodule sync --recursive
git submodule update --init --recursive
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -DNASOQ_BLAS_BACKEND=OpenBLAS -DNASOQ_USE_CLAPACK=ON -DNASOQ_BUILD_DOCS=OFF -DCMAKE_BUILD_TYPE=Release -B ${{github.workspace}}\build
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}\build --config Release -j 6
- name: run test 1
run: |
${{github.workspace}}/build/examples/Release/LBL_Test.exe
${{github.workspace}}/build/examples/Release/NASOQ_Test.exe
${{github.workspace}}/build/examples/Release/NASOQ_Step_Test.exe
${{github.workspace}}/build/examples/Release/LBLSOMOD_Test.exe