2019-09-20 18:05:53 +02:00
|
|
|
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-09-20 18:05:53 +02:00
|
|
|
build-osx:
|
2019-09-21 17:34:17 +02:00
|
|
|
runs-on: macOS-10.14
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2019-09-21 17:34:17 +02:00
|
|
|
node-version: 12.x
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Install dependencies
|
2019-09-20 18:05:53 +02:00
|
|
|
run: |
|
|
|
|
brew install freetype glfw openssl
|
|
|
|
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
|
2019-10-04 16:30:47 +02:00
|
|
|
- name: Build V
|
2019-10-14 06:08:02 +02:00
|
|
|
run: make && ./v -o v v.v
|
2019-10-04 16:30:47 +02:00
|
|
|
- name: Build V using V
|
2019-10-14 06:08:02 +02:00
|
|
|
run: ./v -o v2 v.v && ./v2 -o v3 v.v
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Test v->c
|
|
|
|
run: ./v test v
|
2019-11-17 00:22:43 +01:00
|
|
|
# - name: Test v->js
|
|
|
|
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
2019-11-10 03:29:51 +01:00
|
|
|
- name: Test vid
|
|
|
|
run: |
|
|
|
|
git clone --depth 1 https://github.com/vlang/vid.git
|
|
|
|
cd vid && ../v -o vid .
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-09-20 18:05:53 +02:00
|
|
|
build-ubuntu:
|
2019-09-21 17:34:17 +02:00
|
|
|
runs-on: ubuntu-18.04
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2019-09-21 17:34:17 +02:00
|
|
|
node-version: 12.x
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Install dependencies
|
2019-10-28 09:45:27 +01:00
|
|
|
run: sudo apt-get update; sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Build v
|
2019-10-14 06:08:02 +02:00
|
|
|
run: make && ./v -cc gcc -o v v.v
|
2019-09-22 16:24:15 +02:00
|
|
|
- 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
|
2019-11-14 23:20:22 +01:00
|
|
|
- name: Bare metal
|
2019-11-16 07:34:57 +01:00
|
|
|
run: ./v -bare -o bare vlib/os/bare/bare_example_linux.v
|
2019-09-22 16:24:15 +02:00
|
|
|
|
|
|
|
build-ubuntu-tcc:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install dependencies
|
2019-11-11 03:06:24 +01:00
|
|
|
run: sudo apt-get update; sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Build v
|
2019-10-14 06:08:02 +02:00
|
|
|
run: make && ./v -o v v.v
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Test v->c with tcc
|
|
|
|
env:
|
|
|
|
VFLAGS: -cc tcc
|
2019-09-20 18:05:53 +02:00
|
|
|
run: |
|
2019-11-11 03:06:24 +01:00
|
|
|
sudo ln -s /var/tmp/tcc/bin/tcc /usr/local/bin/tcc
|
2019-09-22 16:24:15 +02:00
|
|
|
tcc -version
|
2019-10-14 06:08:02 +02:00
|
|
|
./v -o v2 v.v # Make sure vtcc can build itself
|
2019-09-20 18:05:53 +02:00
|
|
|
./v test v
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-11-14 22:46:40 +01:00
|
|
|
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
|
2019-11-14 22:53:03 +01:00
|
|
|
run: sudo apt-get update; sudo apt-get install --quiet -y musl musl-tools
|
2019-11-14 22:46:40 +01:00
|
|
|
- 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
|
|
|
|
|
2019-09-21 03:56:26 +02:00
|
|
|
build-windows-gcc:
|
2019-09-21 17:34:17 +02:00
|
|
|
runs-on: windows-2019
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-09-21 17:34:17 +02:00
|
|
|
#- uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
|
|
|
- name: Build
|
2019-09-20 18:05:53 +02:00
|
|
|
run: |
|
2019-09-28 19:41:11 +02:00
|
|
|
gcc --version
|
2019-09-20 18:05:53 +02:00
|
|
|
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
|
2019-09-21 17:34:17 +02:00
|
|
|
.\make.bat -gcc
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
.\v.exe test v
|
|
|
|
## v.js dosent work on windows
|
|
|
|
#.\v.exe -o hi.js examples/hello_v_js.v
|
|
|
|
#node hi.js
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-09-21 03:56:26 +02:00
|
|
|
build-windows-msvc:
|
2019-09-21 17:34:17 +02:00
|
|
|
runs-on: windows-2019
|
2019-09-21 03:56:26 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-09-21 17:34:17 +02:00
|
|
|
#- uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
|
|
|
- name: Build
|
2019-10-14 07:51:12 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc msvc
|
2019-09-21 03:56:26 +02:00
|
|
|
run: |
|
|
|
|
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
|
2019-09-21 17:34:17 +02:00
|
|
|
.\make.bat -msvc
|
|
|
|
- name: Test
|
2019-10-14 07:51:12 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc msvc
|
2019-09-21 17:34:17 +02:00
|
|
|
run: |
|
|
|
|
.\v.exe test v
|
|
|
|
## v.js dosent work on windows
|
|
|
|
#.\v.exe -o hi.js examples/hello_v_js.v
|
|
|
|
#node hi.js
|