Skip to content

Commit

Permalink
Test GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
metab0t committed Jan 25, 2024
1 parent 39fa6d1 commit 1c4df18
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: build

on:
pull_request:
push:
branches:
- master
tags:
- '*'

jobs:

build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: [ windows-2022 ]
python-version: ["3.11"]

env:
RUNNER_OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}

steps:
- uses: actions/checkout@v2
- name: Install Gurobi
run: |
if [[ $RUNNER_OS == 'windows-2022' ]]; then
# get gurobi.msi and install
curl -L -o gurobi.msi https://packages.gurobi.com/11.0/gurobi11.0.0_win64.msi
msiexec /i gurobi.msi /quiet /qn /norestart
# set environment variables
echo "GUROBI_HOME=C:\gurobi1100\win64" >> $GITHUB_ENV
echo "PATH=$PATH;C:\gurobi1100\win64\bin" >> $GITHUB_ENV
# echo "GRB_LICENSE_FILE=C:\gurobi1100\win64\gurobi.lic" >> $GITHUB_ENV
fi
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: conda-forge,anaconda

- name: Install
run: |
conda install build pytest scikit-build-core nanobind
- name: Test
run: |
python -m pip list
python -m pip install -v .
python -c "import pyoptinterface as poi; print(dir(poi))"

0 comments on commit 1c4df18

Please sign in to comment.