-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Linux Local Redirect Mode (#206)
- Loading branch information
Showing
58 changed files
with
2,532 additions
and
841 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: 'setup' | ||
description: 'checkout, setup rust and python' | ||
inputs: | ||
rust-version: | ||
description: 'Rust version' | ||
required: true | ||
default: 'stable' | ||
extra-targets: | ||
description: 'Extra Rust targets' | ||
toolchain-args: | ||
description: 'Extra args for `rustup toolchain`' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: mhils/workflows/setup-python@v12 # PyO3 wants recent Python on Windows. | ||
- run: rustup toolchain install ${{ inputs.rust-version }} --profile minimal ${{ inputs.toolchain-args }} | ||
shell: bash | ||
- run: rustup default ${{ inputs.rust-version }} | ||
shell: bash | ||
- if: inputs.extra-targets | ||
run: rustup target add ${{ inputs.extra-targets }} | ||
shell: bash | ||
- uses: mhils/workflows/rust-cache@v14 | ||
- if: runner.os == 'Linux' | ||
run: cargo install --locked bpf-linker | ||
shell: bash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.11 | ||
3.12 |
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
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
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
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
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
Oops, something went wrong.