Collect number of process FDs and /proc/self/limits #288
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
- github-actions | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt,clippy | |
- name: rustfmt | |
run: cargo fmt --all -- --check | |
- name: clippy | |
run: cargo clippy --all-features --all-targets -- -D warnings | |
test: | |
name: Test | |
runs-on: ${{ matrix.job.os }} | |
strategy: | |
matrix: | |
job: | |
- { os: ubuntu-22.04, target: x86_64-unknown-linux-gnu } | |
- { os: ubuntu-22.04, target: x86_64-unknown-linux-musl } | |
- { os: windows-2022, target: x86_64-pc-windows-msvc } | |
- { os: macos-12, target: x86_64-apple-darwin } | |
# TODO: Add macos aarch64 here once it becomes available as a runner | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ matrix.job.target }} | |
- name: Fetch | |
run: cargo fetch --target ${{ matrix.job.target }} | |
- name: Build | |
run: cargo test --target ${{ matrix.job.target }} --no-run | |
- name: Test | |
run: cargo test --target ${{ matrix.job.target }} | |
# This job builds non-tier1 targets that aren't already tested | |
build_lower_tier: | |
name: Build sources | |
runs-on: ${{ matrix.job.os }} | |
strategy: | |
matrix: | |
job: | |
- { os: ubuntu-22.04, target: i686-unknown-linux-gnu, use-cross: true } | |
#- { os: ubuntu-latest, target: i686-unknown-linux-musl, use-cross: true } | |
- { os: ubuntu-22.04, target: aarch64-unknown-linux-gnu, use-cross: true } | |
- { os: ubuntu-22.04, target: aarch64-unknown-linux-musl, use-cross: true } | |
#- { os: ubuntu-22.04, target: aarch64-linux-android, use-cross: true } | |
- { os: ubuntu-22.04, target: arm-unknown-linux-gnueabi, use-cross: true } | |
- { os: ubuntu-22.04, target: arm-unknown-linux-musleabi, use-cross: true } | |
- { os: ubuntu-22.04, target: arm-linux-androideabi, use-cross: true } | |
- { os: ubuntu-22.04, target: arm-unknown-linux-gnueabihf, use-cross: true } | |
# TODO: Remove this when aarch64 macs can be used as runners | |
- { os: macos-12, target: aarch64-apple-darwin, use-cross: false } | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ matrix.job.target }} | |
#- name: Unit tests | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
#command: test | |
command: build | |
use-cross: ${{ matrix.job.use-cross }} | |
args: --target ${{ matrix.job.target }} --verbose --all-targets | |
#args: --target ${{ matrix.job.target }} --verbose -- --nocapture | |