Skip to content

Commit

Permalink
Remove more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Sep 3, 2024
1 parent 833bd5f commit 136ed77
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "[email protected]"
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 "[email protected]"
# 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:
Expand Down

0 comments on commit 136ed77

Please sign in to comment.