Skip to content

matplotlib uses true type fonts. #35

matplotlib uses true type fonts.

matplotlib uses true type fonts. #35

Workflow file for this run

name: devcontainer
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: [snail-runners]
steps:
- name: Login to local container registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.LOCAL_REG_URL }}
username: ${{ secrets.LOCAL_REG_USER }}
password: ${{ secrets.LOCAL_REG_PASS }}
- name: Install git
run: sudo apt-get update && sudo apt-get install -y git
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Build and test in devcontainer
uses: devcontainers/[email protected]
env:
BUILDX_NO_DEFAULT_ATTESTATIONS: true
with:
imageName: ${{ secrets.LOCAL_REG_URL }}/secret-snail/localization-server-devcontainer
runCmd: |
cmake -B ./build -S ./ -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} && \
cd ./build && make -j8 && ctest