1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

CI: ubuntu-musl target

This commit is contained in:
Alexander Medvednikov
2019-11-15 00:46:40 +03:00
parent 9499275180
commit a04c3bac83
4 changed files with 26 additions and 2 deletions

View File

@@ -59,6 +59,22 @@ jobs:
./v -o v2 v.v # Make sure vtcc can build itself
./v test v
build-ubuntu-musl:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: sudo apt-get update; sudo apt-get install --quiet -y musl msul-tools
- name: Build v
run: make && ./v -cc musl-gcc -o v v.v
# - name: Test v->c
# run: ./v test v
# - name: Test v->js
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
build-windows-gcc:
runs-on: windows-2019
steps: