g3proxy: add initial filter for SMTP extensions #1523
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: MacOS-CI | |
on: | |
push: | |
paths-ignore: | |
- 'ansible/**' | |
- 'doc/**' | |
- 'demo/**' | |
- 'scripts/**' | |
- 'g3proxy/doc/**' | |
- 'g3tiles/doc/**' | |
branches: | |
- 'master' | |
- 'rel/**' | |
pull_request: | |
branches: | |
- 'master' | |
- 'rel/**' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- beta | |
- nightly | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install ${{ matrix.rust }} toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Install dependencies | |
run: | | |
brew install capnp openssl c-ares lua | |
- name: Cargo build | |
run: cargo build | |
- name: Cargo test | |
run: cargo test | |
clippy: | |
name: Clippy | |
runs-on: macos-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Install dependencies | |
run: | | |
brew install capnp openssl c-ares lua | |
- name: Cargo clippy | |
run: cargo clippy --tests -- --deny warnings | |
build-vendored: | |
name: Build vendored | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
feature: | |
- vendored-openssl | |
- vendored-tongsuo | |
- vendored-aws-lc | |
- vendored-boringssl | |
component: | |
- g3proxy | |
- g3bench | |
- g3tiles | |
- g3fcgen | |
- g3mkcert | |
- g3keymess | |
include: | |
- feature: vendored-c-ares | |
component: g3proxy | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
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 |