Implement sending commands via Unix sockets with optional systemd socket activation. #328
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: Rust Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
name: Build Crate (${{ matrix.platform }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
platform: Linux | |
packages: | |
- gcc-aarch64-linux-gnu | |
test-targets: | |
- x86_64-unknown-linux-gnu | |
targets: | |
- aarch64-unknown-linux-gnu | |
- os: macos-12 | |
platform: macOS | |
test-targets: | |
- x86_64-apple-darwin | |
targets: | |
- aarch64-apple-darwin | |
- aarch64-apple-ios | |
- aarch64-apple-ios-sim | |
- x86_64-apple-ios | |
- os: windows-2022 | |
platform: Windows | |
test-targets: | |
- x86_64-pc-windows-msvc | |
targets: | |
- aarch64-pc-windows-msvc | |
runs-on: ${{ matrix.os }} | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer | |
CARGO_INCREMENTAL: 0 | |
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc | |
RUST_BACKTRACE: short | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ssh-key: ${{ secrets.DEPLOY_KEY }} | |
submodules: recursive | |
- name: Install Packages | |
if: matrix.os == 'ubuntu-latest' | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ${{ join(matrix.packages, ' ') }} | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt | |
targets: ${{ join(matrix.targets, ', ') }} | |
- name: Build | |
shell: bash | |
run: cargo build --verbose --workspace --all-features --target ${{ join(matrix.targets, ' --target ') }} --target ${{ join(matrix.test-targets, ' --target ') }} | |
- name: Test | |
shell: bash | |
run: cargo test --verbose --workspace --all-features --target ${{ join(matrix.test-targets, ' --target ') }} |