diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 9aae571..40dd6e0 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -13,7 +13,7 @@ jobs: env: RUST_BACKTRACE: 1 RUST_LIB_BACKTRACE: 1 - TOKIO_WORKER_THREADS: 1 + TOKIO_WORKER_THREADS: 1 strategy: matrix: @@ -27,24 +27,14 @@ jobs: - target: aarch64-apple-darwin os: macos-latest command: test - - target: x86_64-pc-windows-msvc - os: windows-latest - command: test - + # - target: x86_64-pc-windows-msvc + # os: windows-latest + # command: test + runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v4 - - name: Install pnpm (Windows) - if: matrix.os == 'windows-latest' - uses: pnpm/action-setup@v4 - with: - version: 9.9 - - name: Install Node (Windows) - if: matrix.os == 'windows-latest' - uses: actions/setup-node@v4 - with: - node-version: 20 - name: Add target run: rustup target add ${{ matrix.target }} - name: Cross-compile