mirror of
https://github.com/bytedance/g3.git
synced 2026-04-28 03:30:31 +00:00
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: Linux-musl-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
|
|
MUSL_TARGET: x86_64-unknown-linux-musl
|
|
MUSL_FEATURES: --no-default-features --features vendored-openssl,quic,vendored-c-ares,hickory,geoip
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
- name: Install stable toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: $MUSL_TARGET
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install capnproto musl-tools
|
|
- name: Cargo build
|
|
run: cargo build --target=$MUSL_TARGET $MUSL_FEATURES
|
|
- name: Cargo clippy
|
|
run: cargo clippy --target=$MUSL_TARGET $MUSL_FEATURES --tests -- --deny warnings
|
|
- name: Cargo test
|
|
run: cargo test --target=$MUSL_TARGET $MUSL_FEATURES
|