diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index addb02c..aeb5003 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -24,24 +24,24 @@ jobs: profile: minimal toolchain: stable override: true - - name: Install system packages - shell: bash - run: | - if [ "$RUNNER_OS" == "Linux" ]; then - sudo apt-get update - sudo apt-get install libhdf5-103 libhdf5-dev - elif [ "$RUNNER_OS" == "Windows" ]; then - cp .github/helpers/vcpkg.json . - vcpkg install - ls vcpkg_installed/x64-windows/* - echo "HDF5_DIR=${GITHUB_WORKSPACE}\vcpkg_installed\x64-windows\\" >> $GITHUB_ENV - echo "${GITHUB_WORKSPACE}\vcpkg_installed\x64-windows\bin\\" >> $GITHUB_PATH - else - echo "$RUNNER_OS" is not supported - exit 1 - fi + # - name: Install system packages + # shell: bash + # run: | + # if [ "$RUNNER_OS" == "Linux" ]; then + # sudo apt-get update + # sudo apt-get install libhdf5-103 libhdf5-dev + # elif [ "$RUNNER_OS" == "Windows" ]; then + # cp .github/helpers/vcpkg.json . + # vcpkg install + # ls vcpkg_installed/x64-windows/* + # echo "HDF5_DIR=${GITHUB_WORKSPACE}\vcpkg_installed\x64-windows\\" >> $GITHUB_ENV + # echo "${GITHUB_WORKSPACE}\vcpkg_installed\x64-windows\bin\\" >> $GITHUB_PATH + # else + # echo "$RUNNER_OS" is not supported + # exit 1 + # fi - name: Run cargo test uses: actions-rs/cargo@v1 with: command: test - args: --no-default-features --features nalgebra,parallelism,mzmlb,async,mzsignal,thermo -- --nocapture --show-output \ No newline at end of file + args: --no-default-features --features nalgebra,parallelism,async,mzsignal,thermo -- --nocapture --show-output \ No newline at end of file