Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

env:
MSRV: "1.86" # Minimum Supported Rust Version
MSRV: "1.88" # Minimum Supported Rust Version

jobs:
protobuf:
Expand All @@ -21,10 +21,11 @@ jobs:
# FIXME: https://github.com/mitmproxy/mitmproxy/issues/7877 - bump SwiftProtobuf and then re-add this here.
# - run: brew install swift-protobuf
- run: brew install protobuf
- run: cargo install protoc-gen-prost
- run: cargo install --locked protoc-gen-prost@0.5.0
- run: protoc --proto_path=./src/ipc/ mitmproxy_ipc.proto
--prost_out=./src/ipc/
--prost_opt="bytes=data"
--prost_opt="flat_output_dir=true"
# --swift_out=./mitmproxy-macos/redirector/ipc
- run: cargo fmt --all
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
matrix:
include:
- os: windows-latest
rust: "1.86" # MSRV - can't use variables here.
rust: "1.88" # MSRV - can't use variables here.
args: --exclude mitmproxy-linux-ebpf
- os: macos-latest
rust: "1.86" # MSRV - can't use variables here.
rust: "1.88" # MSRV - can't use variables here.
args: --exclude mitmproxy-linux-ebpf
- os: ubuntu-22.04
rust: "1.86" # MSRV - can't use variables here.
rust: "1.88" # MSRV - can't use variables here.
args: --exclude mitmproxy-linux-ebpf
- os: ubuntu-latest
rust: stable
Expand Down
Loading
Loading