Skip to content

Update prost requirement from 0.13 to 0.14 in /spiffe #700

Update prost requirement from 0.13 to 0.14 in /spiffe

Update prost requirement from 0.13 to 0.14 in /spiffe #700

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
setup-and-lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
- name: Cache Project
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
- name: Install toolchain
uses: ./.github/actions/setup-env
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Lint code with rustfmt and clippy
run: |
cargo +nightly fmt -- --check
cargo clippy -- -D warnings
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
needs: setup-and-lint
env:
SPIFFE_ENDPOINT_SOCKET: unix:/tmp/spire-agent/public/api.sock
SPIRE_ADMIN_ENDPOINT_SOCKET: unix:/tmp/spire-agent/admin/api.sock
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
- name: Cache Project
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
- name: Install toolchain
uses: ./.github/actions/setup-env
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build Rust project
run: cargo build
- name: Start SPIRE
run: .github/workflows/scripts/run-spire.sh &
- name: Run Integration Tests
run: RUST_BACKTRACE=1 cargo test --features integration-tests
- name: Clean up SPIRE
run: .github/workflows/scripts/cleanup-spire.sh