Bump gateway-api to v1.1.0 #141
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: build | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- 'main' | |
tags: | |
- '*' | |
workflow_dispatch: {} | |
jobs: | |
rust-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
components: rust-src, clippy, rustfmt | |
override: false | |
- name: Install bpf-linker | |
run: | | |
cargo install bpf-linker | |
# TODO: Once we migrate the controller from Go to Rust, | |
# add the controller build step here. | |
- name: Build all rust crates (dataplane, test server) | |
run: | | |
make build.rust | |
- name: Check formatting | |
run: | | |
make check.format.rust | |
- name: Check clippy | |
run: | | |
make lint.rust |