Skip to content

Commit

Permalink
Update CI (#8)
Browse files Browse the repository at this point in the history
* Use micromamba in place of miniconda

* Use Windows install path Library prefix

* Fix formatting (why didn't the Actions plugin find this?)

* Update location of vcvarsall.bat

* Specify pwsh for Windows test

* Initialize both bash and pwsh

* Revert to vcvars64.bat
  • Loading branch information
mdpiper committed Oct 19, 2023
1 parent d28c46d commit 88cf8e7
Showing 1 changed file with 25 additions and 19 deletions.
44 changes: 25 additions & 19 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,50 +23,56 @@ jobs:
build-type: [Release]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: conda-incubator/setup-miniconda@v2
- uses: mamba-org/setup-micromamba@v1
with:
auto-update-conda: true
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: true

- name: Show conda installation info
run: conda info

- name: Install build tools and dependencies into env
run: |
mamba install make cmake c-compiler pkg-config
mamba list
micromamba-version: latest
environment-name: testing
init-shell: >-
bash
powershell
create-args: >-
make
cmake
c-compiler
pkg-config
- name: Make cmake build directory
run: cmake -E make_directory build

- name: Configure cmake (unix)
- name: Configure CMake (Unix)
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
working-directory: ${{ github.workspace }}/build
run: |
cmake .. \
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
- name: Configure cmake (windows)
- name: Configure CMake (Windows)
if: matrix.os == 'windows-latest'
working-directory: ${{ github.workspace }}\build
shell: pwsh
run: |
& "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" x86
& "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" x86
cmake .. `
-DCMAKE_INSTALL_PREFIX:PATH=$env:CONDA_PREFIX `
-DCMAKE_INSTALL_PREFIX:PATH=$env:CONDA_PREFIX\Library `
-DCMAKE_BUILD_TYPE=${{ matrix.build-type }}
- name: Build
working-directory: ${{ github.workspace }}/build
run: cmake --build . --target install --config ${{ matrix.build-type }}

- name: Test
- name: Test (Unix)
if: matrix.os != 'windows-latest'
run: |
test -f $CONDA_PREFIX/include/bmi.h
test -f $CONDA_PREFIX/lib/pkgconfig/bmic.pc
- name: Test (Windows)
if: matrix.os == 'windows-latest'
shell: pwsh
run: |
if ( -not ( Test-Path -Path $env:CONDA_PREFIX\Library\include\bmi.h ) ){ exit 1 }
if ( -not ( Test-Path -Path $env:CONDA_PREFIX\Library\lib\pkgconfig\bmic.pc ) ){ exit 1 }

0 comments on commit 88cf8e7

Please sign in to comment.