Remove retry attempts from hickory resolver #6023
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: Rust - Unused dependencies | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/rust-unused-dependencies.yml | |
- '**/*.rs' | |
- '**/Cargo.toml' | |
- 'building/*-container-image.txt' | |
workflow_dispatch: | |
env: | |
# Pinning nightly just to avoid random breakage. It's fine to bump this at any time | |
RUST_NIGHTLY_TOOLCHAIN: nightly-2024-10-02 | |
permissions: {} | |
jobs: | |
prepare-containers: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch container image names | |
run: | | |
echo "inner_container_image_linux=$(cat ./building/linux-container-image.txt)" >> $GITHUB_ENV | |
echo "inner_container_image_android=$(cat ./building/android-container-image.txt)" >> $GITHUB_ENV | |
outputs: | |
container_image_linux: ${{ env.inner_container_image_linux }} | |
container_image_android: ${{ env.inner_container_image_android }} | |
cargo-udeps-linux: | |
needs: prepare-containers | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ needs.prepare-containers.outputs.container_image_linux }} | |
steps: | |
# Fix for HOME path overridden by GH runners when building in containers, see: | |
# https://github.com/actions/runner/issues/863 | |
- name: Fix HOME path | |
run: echo "HOME=/root" >> $GITHUB_ENV | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout submodules | |
run: | | |
git config --global --add safe.directory '*' | |
git submodule update --init --depth=1 dist-assets/binaries | |
git submodule update --init wireguard-go-rs/libwg/wireguard-go | |
- name: Install nightly Rust toolchain | |
run: rustup override set $RUST_NIGHTLY_TOOLCHAIN | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-udeps | |
- name: Check for unused dependencies | |
shell: bash | |
run: source env.sh && cargo udeps --workspace | |
cargo-udeps-android: | |
needs: prepare-containers | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ needs.prepare-containers.outputs.container_image_android }} | |
steps: | |
# Fix for HOME path overridden by GH runners when building in containers, see: | |
# https://github.com/actions/runner/issues/863 | |
- name: Fix HOME path | |
run: echo "HOME=/root" >> $GITHUB_ENV | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout wireguard-go submodule | |
run: | | |
git config --global --add safe.directory '*' | |
git submodule update --init wireguard-go-rs/libwg/wireguard-go | |
- name: Install nightly Rust | |
run: | | |
rustup override set ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
rustup target add aarch64-linux-android | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-udeps | |
- name: Check for unused dependencies | |
run: cargo udeps --target aarch64-linux-android --package mullvad-jni | |
cargo-udeps: | |
strategy: | |
matrix: | |
os: [windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout wireguard-go submodule | |
run: | | |
git config --global --add safe.directory '*' | |
git submodule update --init --depth=1 | |
git submodule update --init wireguard-go-rs/libwg/wireguard-go | |
- name: Install msbuild | |
if: matrix.os == 'windows-latest' | |
uses: microsoft/setup-msbuild@v1.0.2 | |
with: | |
vs-version: 16 | |
- name: Install latest zig | |
if: matrix.os == 'windows-latest' | |
uses: mlugg/setup-zig@v1 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install nightly Rust | |
run: rustup override set ${{ env.RUST_NIGHTLY_TOOLCHAIN }} | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-udeps | |
- name: Install Go | |
if: matrix.os == 'macos-latest' | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.3 | |
- name: Check for unused dependencies | |
shell: bash | |
run: cargo udeps --workspace |