From 136ed77466e50a36036ef0a41107fd737a7f1777 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Mon, 2 Sep 2024 22:01:59 -0500 Subject: [PATCH] Remove more stuff --- .github/workflows/ci.yml | 42 ++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d83c9c..12d2646 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,27 +27,27 @@ jobs: - stable steps: - uses: actions/checkout@v4 - - name: Cache cargo & target directories - uses: Swatinem/rust-cache@v2 - with: - key: "v2" - - name: Configure Git - run: | - git config --global user.email "jdoe@example.com" - git config --global user.name "J. Doe" - - name: Set "--features" flag value - id: set-features-flag-value - shell: bash - run: | - if [ -n "${{ matrix.platform.features }}" ]; then - echo "features=${{ matrix.platform.features }}" >> "$GITHUB_OUTPUT" - else - echo "features=default" >> "$GITHUB_OUTPUT" - fi - cat "$GITHUB_OUTPUT" - - name: Maybe install SSL packages - run: sudo apt-get update --yes && sudo apt-get install --yes pkg-config openssl libssl-dev - if: matrix.platform.features == 'native-tls' + # - name: Cache cargo & target directories + # uses: Swatinem/rust-cache@v2 + # with: + # key: "v2" + # - name: Configure Git + # run: | + # git config --global user.email "jdoe@example.com" + # git config --global user.name "J. Doe" + # - name: Set "--features" flag value + # id: set-features-flag-value + # shell: bash + # run: | + # if [ -n "${{ matrix.platform.features }}" ]; then + # echo "features=${{ matrix.platform.features }}" >> "$GITHUB_OUTPUT" + # else + # echo "features=default" >> "$GITHUB_OUTPUT" + # fi + # cat "$GITHUB_OUTPUT" + # - name: Maybe install SSL packages + # run: sudo apt-get update --yes && sudo apt-get install --yes pkg-config openssl libssl-dev + # if: matrix.platform.features == 'native-tls' - name: Build binary # uses: houseabsolute/actions-rust-cross@v0 # with: