build(deps): bump rand from 0.9.2 to 0.10.0 #4098
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: MacOS-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 | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: macos-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: | | |
| brew install capnp openssl c-ares lua | |
| - name: Cargo build | |
| run: cargo build | |
| - name: Cargo clippy | |
| run: cargo clippy --tests -- --deny warnings | |
| - name: Cargo test | |
| run: cargo test --workspace --exclude g3-journal | |
| build-vendored-g1: | |
| name: Build vendored | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| feature: | |
| - vendored-openssl,rustls-ring | |
| - vendored-tongsuo,rustls-ring | |
| - vendored-boringssl,rustls-ring | |
| - vendored-aws-lc,rustls-aws-lc | |
| 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 rust toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - name: Install dependencies | |
| run: | | |
| brew install capnp openssl c-ares lua | |
| - 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: macos-latest | |
| strategy: | |
| matrix: | |
| feature: | |
| - vendored-openssl | |
| - vendored-tongsuo | |
| - vendored-boringssl | |
| - vendored-aws-lc | |
| component: | |
| - g3fcgen | |
| - g3mkcert | |
| - g3keymess | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Install rust toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - name: Install dependencies | |
| run: | | |
| brew install capnp openssl | |
| - 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 |