From 9f94e646ee47cce7a23668eb46977cf110bebf9c Mon Sep 17 00:00:00 2001 From: "Valeriy V. Vorotyntsev" Date: Mon, 9 Oct 2023 01:46:20 +0300 Subject: [PATCH] XXX-WIP --- .github/workflows/test.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8e72ce..47451d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,7 @@ concurrency: jobs: required: + if: false # XXX-DELETEME name: ubuntu / ${{ matrix.toolchain }} runs-on: ubuntu-latest strategy: @@ -53,6 +54,7 @@ jobs: working-directory: rust/ minimal: + if: false # XXX-DELETEME name: ubuntu / stable / minimal-versions runs-on: ubuntu-latest steps: @@ -88,25 +90,23 @@ jobs: # NOTE: Don't use GitHub-hosted macOS runners in a non-public repository -- # they consume CI/CD minutes like crazy; see # https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#minute-multipliers - - windows-latest #- macos-latest + - windows-latest steps: - uses: actions/checkout@v4 with: submodules: true - name: Install the latest stable `tshark` - # See https://launchpad.net/~wireshark-dev/+archive/ubuntu/stable + if: runner.os == 'Windows' + shell: powershell run: | - sudo apt update - sudo apt -y install software-properties-common # provides `add-apt-repository` - sudo add-apt-repository --yes ppa:wireshark-dev/stable - sudo apt update - sudo apt -y install tshark + Invoke-WebRequest -Uri "https://www.wireshark.org/download/win64/Wireshark-win64-4.0.10.exe" -OutFile "WiresharkInstaller.exe" + Start-Process -Wait -FilePath ".\WiresharkInstaller.exe" -ArgumentList "/S" tshark --version - - name: Install stable - uses: dtolnay/rust-toolchain@stable - - run: cargo generate-lockfile - if: hashFiles('rust/Cargo.lock') == '' - - name: cargo test - run: cargo test --locked --all-features --all-targets --workspace - working-directory: rust/ + # - name: Install stable + # uses: dtolnay/rust-toolchain@stable + # - run: cargo generate-lockfile + # if: hashFiles('rust/Cargo.lock') == '' + # - name: cargo test + # run: cargo test --locked --all-features --all-targets --workspace + # working-directory: rust/