summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDavid Knaack <davidkna@users.noreply.github.com>2020-03-15 02:07:34 +0100
committerGitHub <noreply@github.com>2020-03-14 21:07:34 -0400
commitfef8cc8bbdbaaae4dd0f80d4c2643c33e2309c54 (patch)
tree6ed60eb1f33b5f969fc4dd39fb782a1d999c745b /.github
parent8479e72b3e32b0c4fd6024ab8f6f62d049c922cf (diff)
improvement: replace reqwest with attohttpc (#999)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/workflow.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 8a5f2ebfb..1c0b4f773 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -225,10 +225,18 @@ jobs:
run: sudo apt-get install -y musl-tools
- name: Build target
+ if: matrix.target != 'x86_64-unknown-linux-musl'
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}
+
+ - name: Build target (musl)
+ if: matrix.target == 'x86_64-unknown-linux-musl'
+ uses: actions-rs/cargo@v1
+ with:
+ command: build
+ args: --release --features tls-vendored --target ${{ matrix.target }}
- name: Prepare build artifacts [Windows]
if: matrix.os == 'windows-latest'