Merge pull request #1887 from chipitsine/master #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: alpine/musl | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
musl: | |
name: gcc | |
runs-on: ubuntu-latest | |
container: | |
image: alpine:latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: apk add binutils --no-cache build-base readline-dev openssl-dev ncurses-dev git cmake zlib-dev libsodium-dev gnu-libiconv | |
- name: Configure | |
run: ./configure | |
- name: make | |
run: make -C build |