diff --git a/.github/workflows/md5.yml b/.github/workflows/md5.yml index 94f9a4f..cd47f6e 100644 --- a/.github/workflows/md5.yml +++ b/.github/workflows/md5.yml @@ -66,34 +66,3 @@ jobs: toolchain: ${{ matrix.toolchain }} targets: x86_64-apple-darwin - run: cargo test --release - - # Windows tests - windows: - strategy: - matrix: - include: - # 64-bit Windows (GNU) - - target: x86_64-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: x86_64-pc-windows-gnu - toolchain: stable - # 32-bit Windows (GNU) - - target: i686-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: i686-pc-windows-gnu - toolchain: stable - - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{ matrix.toolchain }} - targets: ${{ matrix.target }} - - uses: msys2/setup-msys2@v2 - with: - msystem: MINGW${{ startsWith(matrix.target, 'i686-') && '32' || '64' }} - pacboy: cc:p - path-type: inherit - - run: cargo test --target ${{ matrix.target }} --release - shell: msys2 {0} diff --git a/.github/workflows/sha1.yml b/.github/workflows/sha1.yml index f1d6914..0722fcf 100644 --- a/.github/workflows/sha1.yml +++ b/.github/workflows/sha1.yml @@ -65,37 +65,6 @@ jobs: targets: x86_64-apple-darwin - run: cargo test --release - # Windows tests - windows: - strategy: - matrix: - include: - # 64-bit Windows (GNU) - - target: x86_64-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: x86_64-pc-windows-gnu - toolchain: stable - # 32-bit Windows (GNU) - - target: i686-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: i686-pc-windows-gnu - toolchain: stable - - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{ matrix.toolchain }} - targets: ${{ matrix.target }} - - uses: msys2/setup-msys2@v2 - with: - msystem: MINGW${{ startsWith(matrix.target, 'i686-') && '32' || '64' }} - pacboy: cc:p - path-type: inherit - - run: cargo test --target ${{ matrix.target }} --release - shell: msys2 {0} - # Cross-compiled tests cross: strategy: diff --git a/.github/workflows/sha2.yml b/.github/workflows/sha2.yml index 59ed385..0ce2c78 100644 --- a/.github/workflows/sha2.yml +++ b/.github/workflows/sha2.yml @@ -65,37 +65,6 @@ jobs: targets: x86_64-apple-darwin - run: cargo test --release - # Windows tests - windows: - strategy: - matrix: - include: - # 64-bit Windows (GNU) - - target: x86_64-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: x86_64-pc-windows-gnu - toolchain: stable - # 32-bit Windows (GNU) - - target: i686-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: i686-pc-windows-gnu - toolchain: stable - - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{ matrix.toolchain }} - targets: ${{ matrix.target }} - - uses: msys2/setup-msys2@v2 - with: - msystem: MINGW${{ startsWith(matrix.target, 'i686-') && '32' || '64' }} - pacboy: cc:p - path-type: inherit - - run: cargo test --target ${{ matrix.target }} --release - shell: msys2 {0} - # Cross-compiled tests cross: strategy: diff --git a/.github/workflows/whirlpool.yml b/.github/workflows/whirlpool.yml index 37d4965..ea1355d 100644 --- a/.github/workflows/whirlpool.yml +++ b/.github/workflows/whirlpool.yml @@ -66,34 +66,3 @@ jobs: toolchain: ${{ matrix.toolchain }} targets: x86_64-apple-darwin - run: cargo test --release - - # Windows tests - windows: - strategy: - matrix: - include: - # 64-bit Windows (GNU) - - target: x86_64-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: x86_64-pc-windows-gnu - toolchain: stable - # 32-bit Windows (GNU) - - target: i686-pc-windows-gnu - toolchain: 1.48.0 # MSRV - - target: i686-pc-windows-gnu - toolchain: stable - - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@master - with: - toolchain: ${{ matrix.toolchain }} - targets: ${{ matrix.target }} - - uses: msys2/setup-msys2@v2 - with: - msystem: MINGW${{ startsWith(matrix.target, 'i686-') && '32' || '64' }} - pacboy: cc:p - path-type: inherit - - run: cargo test --target ${{ matrix.target }} --release - shell: msys2 {0}