Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add TrafficPolicy, remap Policy -> TrafficPolicy #51

Merged
merged 4 commits into from
Jul 30, 2024
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
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,14 @@ jobs:
env:
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}

build-glibc-2_24:
name: Build Ngrok Java (glibc 2.24)
# We need to target older glibc (as old as possible) to support customers on very old Linux versions.
# If we end up needing to target older than 2.8, we will have to do a special workaround, as actions/checkout
# won't work without newer glibc versions:
# https://github.com/actions/checkout/issues/1809
build-glibc-2_28:
name: Build Ngrok Java (glibc 2.28)
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux_2_24_x86_64
container: quay.io/pypa/manylinux_2_28_x86_64
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-perform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact: linux-x86_64
container: quay.io/pypa/manylinux_2_24_x86_64
container: quay.io/pypa/manylinux_2_28_x86_64
- host: ubuntu-latest
target: aarch64-unknown-linux-gnu
artifact: linux-aarch_64
Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"rust-src"
"rustc"
"rustfmt"
"rust-analyzer"
];
java-toolchain = with pkgs; [
openjdk17_headless
Expand Down
Loading
Loading