2019-09-20 18:05:53 +02:00
|
|
|
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
alpine-docker-musl-gcc:
|
2019-11-29 17:32:07 +01:00
|
|
|
name: alpine-musl
|
2019-11-28 09:46:52 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2019-11-29 17:14:26 +01:00
|
|
|
|
2019-11-28 09:46:52 +01:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1
|
2019-11-29 17:14:26 +01:00
|
|
|
|
2019-11-28 09:46:52 +01:00
|
|
|
- name: Build V
|
|
|
|
uses: spytheman/docker_alpine_v@v5.0
|
|
|
|
with:
|
|
|
|
entrypoint: .github/workflows/alpine.build.sh
|
|
|
|
|
|
|
|
- name: Test V
|
|
|
|
uses: spytheman/docker_alpine_v@v5.0
|
|
|
|
with:
|
|
|
|
entrypoint: .github/workflows/alpine.test.sh
|
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
macos:
|
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: |
|
2019-12-06 00:11:39 +01:00
|
|
|
brew install freetype glfw openssl postgres
|
2019-09-20 18:05:53 +02:00
|
|
|
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-12-02 09:59:05 +01:00
|
|
|
- name: Test symlink
|
|
|
|
run: sudo ./v symlink
|
2019-12-06 00:11:39 +01:00
|
|
|
- name: Set up pg database
|
|
|
|
run: |
|
2019-12-06 00:38:35 +01:00
|
|
|
brew services start postgresql
|
2019-12-06 00:53:31 +01:00
|
|
|
sleep 3
|
2019-12-07 13:51:00 +01:00
|
|
|
psql -c -d postgres -c 'select rolname from pg_roles'
|
|
|
|
psql -U postgres -d postgres -c 'create database customerdb;'
|
2019-12-06 00:11:39 +01:00
|
|
|
psql -d customerdb -f examples/database/pg/mydb.sql
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Test v->c
|
2019-12-01 10:50:13 +01:00
|
|
|
run: ./v test-compiler
|
2019-12-01 14:12:51 +01:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
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-20 16:27:22 +01:00
|
|
|
- name: Test symlink
|
|
|
|
run: ./v symlink && v -o v2 v.v
|
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-11-29 17:14:26 +01:00
|
|
|
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-11-26 08:15:04 +01:00
|
|
|
run: sudo apt-get update; sudo apt-get install --quiet -y postgresql libpq-dev libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev
|
2019-11-29 17:21:38 +01:00
|
|
|
- name: Build V
|
2019-10-14 06:08:02 +02:00
|
|
|
run: make && ./v -cc gcc -o v v.v
|
2019-11-29 17:21:38 +01:00
|
|
|
- name: Test V
|
2019-12-01 10:50:13 +01:00
|
|
|
run: ./v test-compiler
|
2019-12-01 14:12:51 +01:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-11-17 05:27:59 +01:00
|
|
|
# - name: Test v->js
|
|
|
|
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
2019-11-29 17:21:38 +01:00
|
|
|
- name: Build Vorum
|
2019-11-26 07:59:30 +01:00
|
|
|
run: git clone --depth 1 https://github.com/vlang/vorum && cd vorum && ../v . && cd ..
|
2019-12-03 23:49:52 +01:00
|
|
|
- name: Freestanding
|
2019-11-22 12:39:04 +01:00
|
|
|
run: ./v -freestanding -o bare vlib/os/bare/bare_example_linux.v
|
|
|
|
- name: x64 machine code generation
|
2019-11-22 17:58:28 +01:00
|
|
|
run: cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-11-29 17:21:38 +01:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
ubuntu-prebuilt:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
2019-12-03 23:49:52 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: sudo apt-get update; sudo apt-get install --quiet -y postgresql libpq-dev libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev
|
2019-11-29 17:14:26 +01:00
|
|
|
- name: Download V
|
2019-12-03 20:13:37 +01:00
|
|
|
run: wget https://github.com/vlang/v/releases/latest/download/v_linux.zip && unzip v_linux.zip && ./v --version
|
2019-11-29 17:26:21 +01:00
|
|
|
- name: Test V
|
2019-12-03 15:34:48 +01:00
|
|
|
run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples
|
2019-11-29 17:14:26 +01:00
|
|
|
|
|
|
|
|
2019-11-29 17:32:07 +01:00
|
|
|
macos-prebuilt:
|
|
|
|
runs-on: macOS-10.14
|
2019-12-03 23:49:52 +01:00
|
|
|
|
2019-11-29 17:32:07 +01:00
|
|
|
steps:
|
2019-12-03 23:49:52 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
brew install freetype glfw openssl
|
|
|
|
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
|
2019-11-29 17:32:07 +01:00
|
|
|
- name: Download V
|
2019-12-03 20:13:37 +01:00
|
|
|
run: wget https://github.com/vlang/v/releases/latest/download/v_macos.zip && unzip v_macos.zip && ./v --version
|
2019-11-29 17:32:07 +01:00
|
|
|
- name: Test V
|
2019-12-03 15:34:48 +01:00
|
|
|
run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples
|
2019-11-29 17:47:57 +01:00
|
|
|
|
|
|
|
windows-prebuilt:
|
|
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
|
|
|
- name: Download V
|
2019-11-29 18:02:39 +01:00
|
|
|
run: echo "test" #wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_windows.zip && unzip v_windows.zip && ./v.exe --version
|
2019-11-29 17:47:57 +01:00
|
|
|
- name: Test V
|
2019-11-29 18:02:39 +01:00
|
|
|
run: echo "test" #./v.exe examples/hello_world.v && examples/hello_world.exe
|
2019-11-29 17:32:07 +01:00
|
|
|
|
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
ubuntu-tcc:
|
2019-09-22 16:24:15 +02:00
|
|
|
runs-on: ubuntu-18.04
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc tcc
|
2019-09-22 16:24:15 +02:00
|
|
|
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-12-01 14:12:51 +01:00
|
|
|
run: echo $VFLAGS && make && ./v -o v v.v
|
|
|
|
- name: Test v->c
|
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-12-01 10:50:13 +01:00
|
|
|
./v test-compiler
|
2019-12-01 14:12:51 +01:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
ubuntu-musl:
|
2019-11-14 22:46:40 +01:00
|
|
|
runs-on: ubuntu-18.04
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc musl-gcc
|
2019-11-14 22:46:40 +01:00
|
|
|
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
|
2019-12-01 14:12:51 +01:00
|
|
|
run: echo $VFLAGS && make && ./v -o v v.v
|
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-11-14 22:46:40 +01:00
|
|
|
# - name: Test v->js
|
|
|
|
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
windows-gcc:
|
2019-09-21 17:34:17 +02:00
|
|
|
runs-on: windows-2019
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc gcc
|
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: |
|
2019-12-01 10:50:13 +01:00
|
|
|
.\v.exe test-compiler
|
2019-09-21 17:34:17 +02:00
|
|
|
## v.js dosent work on windows
|
|
|
|
#.\v.exe -o hi.js examples/hello_v_js.v
|
|
|
|
#node hi.js
|
2019-12-01 14:12:51 +01:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
windows-msvc:
|
2019-09-21 17:34:17 +02:00
|
|
|
runs-on: windows-2019
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc msvc
|
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-09-21 03:56:26 +02:00
|
|
|
run: |
|
2019-12-01 14:12:51 +01:00
|
|
|
echo %VFLAGS%
|
|
|
|
echo $VFLAGS
|
2019-09-21 03:56:26 +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 -msvc
|
|
|
|
- name: Test
|
|
|
|
run: |
|
2019-12-01 10:50:13 +01:00
|
|
|
.\v.exe test-compiler
|
2019-09-21 17:34:17 +02:00
|
|
|
## v.js dosent work on windows
|
|
|
|
#.\v.exe -o hi.js examples/hello_v_js.v
|
|
|
|
#node hi.js
|
2019-12-01 14:12:51 +01:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-11-28 09:46:52 +01:00
|
|
|
|