1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-28 15:56:28 +00:00

build: Install libssl-dev during musl build

This commit is contained in:
Matan Kushner 2019-12-19 18:09:03 -05:00
parent f898b22b55
commit 49d1c250d5
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4

View File

@ -204,7 +204,7 @@ jobs:
sudo git reset --hard origin/master sudo git reset --hard origin/master
cd - 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: env:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }} HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
@ -247,7 +247,8 @@ jobs:
- name: Install musl tools - name: Install musl tools
if: matrix.target == 'x86_64-unknown-linux-musl' 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 - name: Build target
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1