Refactor font rendering pipeline, remove font-kit and pathfinder
#491
Workflow file for this run
This file contains hidden or 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: Plotters Core Crate | |
| on: [push, pull_request] | |
| jobs: | |
| doc: | |
| name: cargo-doc | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install fontconfig | |
| run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| override: true | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: doc | |
| args: --no-deps --all-features | |
| msrv: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install fontconfig | |
| run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: 1.88.0 | |
| override: true | |
| args: --all-features | |
| build_and_test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install fontconfig | |
| if: runner.os == 'Linux' | |
| run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --verbose | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --verbose --no-default-features --features=svg_backend --lib | |
| test_all_features_exclude_ab_glyph: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install fontconfig | |
| run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| # This is all features except for ab_glyph, which will break doctests | |
| args: --verbose --features=serialization,evcxr | |
| test_all_features_exclude_doctests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install fontconfig | |
| run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| # Run all tests with ab_glyph, but exclude doctests | |
| args: --lib --bins --tests --verbose --all-features | |
| run_all_examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install fontconfig | |
| run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev | |
| - uses: actions-rs/cargo@v1 | |
| with: | |
| command: build | |
| args: --verbose --release --examples | |
| - name: Run all the examples | |
| run: | | |
| cd plotters | |
| for example in examples/*.rs | |
| do | |
| ../target/release/examples/$(basename ${example} .rs) | |
| done | |
| tar -czvf example-outputs.tar.gz plotters-doc-data | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: example-outputs | |
| path: plotters/example-outputs.tar.gz |