The website build started failing with what looks like an incompatibility between nbind and a new libc++ version. GithHub is rolling out a new Ubuntu image, which is the likely culprit. Pin to an older version of Ubuntu since nbind will never be updated, and we haven't replaced it yet.
19 lines
315 B
YAML
19 lines
315 B
YAML
name: Website
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup-website
|
|
|
|
- name: yarn build
|
|
run: yarn build
|
|
working-directory: website
|