From 49d1c250d55e4e1d869c4d2212950e8d48bb0be9 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Thu, 19 Dec 2019 18:09:03 -0500 Subject: [PATCH] build: Install libssl-dev during musl build --- .github/workflows/workflow.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 63dcbcfc..b8979b24 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -204,7 +204,7 @@ jobs: sudo git reset --hard origin/master cd - - brew bump-formula-pr --url=https://github.com/starship/starship/archive/$(git describe --tags).tar.gz --message="Automated release pull request using continuous integration." --no-browse -v starship --force + brew bump-formula-pr --url=https://github.com/starship/starship/archive/$(git describe --tags).tar.gz --message="Automated release pull request using continuous integration. If you have any questions, please ping `@matchai`." --no-browse -v starship --force env: HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }} @@ -247,7 +247,8 @@ jobs: - name: Install musl tools if: matrix.target == 'x86_64-unknown-linux-musl' - run: sudo apt-get install -y musl-tools + # Install libssl-dev for openssl-sys + run: sudo apt-get install -y musl-tools libssl-dev - name: Build target uses: actions-rs/cargo@v1