add thrift var int encoder/decoder #4084
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: Linux-CI | |
| permissions: { } | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'ansible/**' | |
| - 'doc/**' | |
| - 'sphinx/**' | |
| - 'scripts/**' | |
| branches: | |
| - 'master' | |
| - 'lts/**' | |
| pull_request: | |
| paths-ignore: | |
| - 'ansible/**' | |
| - 'doc/**' | |
| - 'sphinx/**' | |
| - 'scripts/**' | |
| branches: | |
| - 'master' | |
| - 'lts/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS: -C linker-features=-lld # workaround for vendored-boringssl | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust: | |
| - "1.90" | |
| - stable | |
| - beta | |
| - nightly | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Install ${{ matrix.rust }} toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install capnproto libc-ares-dev libssl-dev liblua5.4-dev | |
| - name: Cargo build | |
| run: cargo build | |
| - name: Cargo test | |
| run: cargo test --workspace | |
| clippy: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Install stable toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install capnproto libc-ares-dev libssl-dev liblua5.4-dev | |
| - name: Cargo clippy | |
| run: cargo clippy --tests --all -- --deny warnings | |
| build-vendored-g1: | |
| name: Build vendored | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| feature: | |
| - vendored-openssl,rustls-ring | |
| - vendored-tongsuo,rustls-ring | |
| - vendored-boringssl,rustls-ring | |
| - vendored-aws-lc,rustls-aws-lc | |
| - vendored-aws-lc-fips,rustls-aws-lc-fips | |
| component: | |
| - g3proxy | |
| - g3bench | |
| - g3tiles | |
| include: | |
| - feature: vendored-c-ares,rustls-ring | |
| component: g3proxy | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Install stable toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install capnproto libc-ares-dev libssl-dev liblua5.4-dev | |
| - name: Cargo build | |
| run: cargo build --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} | |
| - name: Cargo clippy | |
| run: cargo clippy --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} -- --deny warnings | |
| build-vendored-g2: | |
| name: Build vendored | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| feature: | |
| - vendored-openssl | |
| - vendored-tongsuo | |
| - vendored-boringssl | |
| - vendored-aws-lc | |
| - vendored-aws-lc-fips | |
| component: | |
| - g3fcgen | |
| - g3mkcert | |
| - g3keymess | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Install stable toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install capnproto libssl-dev | |
| - name: Cargo build | |
| run: cargo build --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} | |
| - name: Cargo clippy | |
| run: cargo clippy --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} -- --deny warnings | |
| openssl-async-job: | |
| name: Build with OpenSSL Async Job | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| component: | |
| - g3keymess | |
| - g3tiles | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Install stable toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install capnproto libssl-dev | |
| - name: Cargo build | |
| run: cargo build --features openssl-async-job -p ${{ matrix.component }} | |
| - name: Cargo clippy | |
| run: cargo clippy --features openssl-async-job -p ${{ matrix.component }} -- --deny warnings |