From 198b0901d0e692900b4da7373c951fab029f2398 Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Sat, 2 Mar 2024 19:31:03 -0500 Subject: [PATCH] Maybe windows will place nicer --- .github/workflows/build_docs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index da0afaca..48c99476 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -6,7 +6,7 @@ on: branches: [main] jobs: Matrix-build: - runs-on: ubuntu-latest + runs-on: windows-latest # container: node:latest # See: https://github.com/marketplace/actions/setup-miniconda#important @@ -29,10 +29,10 @@ jobs: environment-file: doc/environment.yml - name: install teqp, built from source # https://github.com/usnistgov/ChebTools/blob/master/README.md#prerequisites regarding the need for libgcc + # conda install libgcc libstdcxx-ng run: | - conda install libgcc libstdcxx-ng conda list - CXX=clang++ python -m pip install . + python -m pip install . cd doc make html - name: archive docs