fix(translator): fix problem with the input length #624
Workflow file for this run
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: Rust | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main, release-*] | |
pull_request: | |
branches: [main, release-*] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
rust-build: | |
runs-on: ${{matrix.os}} | |
env: | |
DISPLAY: ':99' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
include: | |
- os: ubuntu-latest | |
headless: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
- os: macos-latest | |
extra: -- --skip test_afrim | |
- os: windows-latest | |
extra: -- --skip test_afrim | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
# To only cache runs from `master` | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- if: matrix.os == 'ubuntu-latest' | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libxtst-dev libevdev-dev libxdo-dev | |
version: 1.0 | |
- name: Add components | |
run: rustup component add clippy rustfmt | |
- name: Setup headless environment | |
run: ${{matrix.headless}} | |
- name: Rustfmt | |
run: cargo fmt -- --check | |
- name: Clippy | |
run: cargo clippy --workspace --all-targets -- -D warnings | |
- name: Build (minimal) | |
run: | | |
cargo test --no-run -p afrim-memory --verbose | |
cargo test --no-run -p afrim-preprocessor --no-default-features --verbose | |
cargo test --no-run -p afrim-translator --no-default-features --verbose | |
cargo test --no-run -p afrim-config --no-default-features --verbose | |
cargo test --no-run -p afrim --no-default-features --verbose | |
- name: Build (normal) | |
run: | | |
cargo test --no-run -p afrim-preprocessor --verbose | |
cargo test --no-run -p afrim-translator --verbose | |
cargo test --no-run -p afrim-config --verbose | |
cargo test --no-run -p afrim --verbose | |
- name: Build (full) | |
run: | | |
cargo test --no-run -p afrim-preprocessor --all-features --verbose | |
cargo test --no-run -p afrim --all-features --verbose | |
- name: Run tests (minimal) | |
run: | | |
cargo test -p afrim-memory --verbose | |
cargo test -p afrim-preprocessor --no-default-features --verbose | |
cargo test -p afrim-translator --no-default-features --verbose | |
cargo test -p afrim-config --no-default-features --verbose | |
cargo test -p afrim --no-default-features --verbose ${{matrix.extra}} | |
- name: Run tests (normal) | |
run: | | |
cargo test -p afrim-preprocessor --verbose | |
cargo test -p afrim-translator --verbose | |
cargo test -p afrim-config --verbose | |
cargo test -p afrim --verbose ${{matrix.extra}} | |
- name: Run tests (full) | |
run: | | |
cargo test -p afrim-preprocessor --all-features --verbose | |
cargo test -p afrim --all-features --verbose ${{matrix.extra}} | |