matplotlib uses true type fonts. #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |