2019-09-20 19:05:53 +03:00
|
|
|
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
2019-09-22 17:24:15 +03:00
|
|
|
|
2019-12-25 15:54:48 +03:00
|
|
|
v-fmt:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: getting all branch metainfo from github
|
|
|
|
run: |
|
|
|
|
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
|
|
|
|
echo "Changed files compared to origin/master are:" && git diff --name-status origin/master HEAD -- '*.v'
|
|
|
|
- name: Build v (there is no need for dependencies for fmt)
|
|
|
|
run: make -j4
|
2019-12-27 21:17:06 +03:00
|
|
|
- name: Build a production tools/vfmt
|
2019-12-25 15:54:48 +03:00
|
|
|
run: ./v -prod -d vfmt tools/vfmt.v
|
2019-12-30 07:42:23 +03:00
|
|
|
- name: Run v fmt -diff on only the changed files. Does NOT fail for now.
|
|
|
|
run: git diff --name-status origin/master HEAD -- '*.v' |grep -v '^D'|rev|cut -f1|rev| xargs ./v fmt -noerror -diff
|
2019-12-25 15:54:48 +03:00
|
|
|
- name: Run v test-fmt
|
|
|
|
run: ./v test-fmt
|
|
|
|
|
2019-12-22 00:09:33 +03:00
|
|
|
ubuntu-tcc:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
env:
|
|
|
|
VFLAGS: -cc tcc
|
|
|
|
steps:
|
2019-12-27 22:29:39 +03:00
|
|
|
- uses: actions/checkout@v1
|
2019-12-22 00:09:33 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list; sudo apt-get update; sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
|
|
|
- name: Build v
|
2019-12-23 13:02:50 +03:00
|
|
|
run: echo $VFLAGS && make -j4 && ./v -cg -o v v.v
|
2019-12-22 00:09:33 +03:00
|
|
|
- name: Test v->c
|
|
|
|
run: |
|
|
|
|
sudo ln -s /var/tmp/tcc/bin/tcc /usr/local/bin/tcc
|
|
|
|
tcc -version
|
|
|
|
./v -o v2 v.v # Make sure vtcc can build itself
|
|
|
|
./v test-compiler
|
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
alpine-docker-musl-gcc:
|
2019-11-29 19:32:07 +03:00
|
|
|
name: alpine-musl
|
2019-11-28 11:46:52 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2019-11-29 19:14:26 +03:00
|
|
|
|
2019-11-28 11:46:52 +03:00
|
|
|
- name: Checkout
|
2019-12-27 22:29:39 +03:00
|
|
|
uses: actions/checkout@v1
|
2019-11-29 19:14:26 +03:00
|
|
|
|
2019-11-28 11:46:52 +03:00
|
|
|
- name: Build V
|
2019-12-08 23:30:38 +03:00
|
|
|
uses: spytheman/docker_alpine_v@v6.0
|
2019-11-28 11:46:52 +03:00
|
|
|
with:
|
|
|
|
entrypoint: .github/workflows/alpine.build.sh
|
|
|
|
|
|
|
|
- name: Test V
|
2019-12-08 23:30:38 +03:00
|
|
|
uses: spytheman/docker_alpine_v@v6.0
|
2019-11-28 11:46:52 +03:00
|
|
|
with:
|
|
|
|
entrypoint: .github/workflows/alpine.test.sh
|
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
macos:
|
2019-12-13 18:41:35 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-12-27 21:17:06 +03:00
|
|
|
os: [macOS-latest]
|
2019-09-20 19:05:53 +03:00
|
|
|
steps:
|
2019-12-27 22:29:39 +03:00
|
|
|
- uses: actions/checkout@v1
|
2019-09-20 19:05:53 +03:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2019-09-21 18:34:17 +03:00
|
|
|
node-version: 12.x
|
2019-09-22 17:24:15 +03:00
|
|
|
- name: Install dependencies
|
2019-09-20 19:05:53 +03:00
|
|
|
run: |
|
2019-12-08 23:30:38 +03:00
|
|
|
brew install freetype glfw openssl postgres sdl2 sdl2_ttf sdl2_mixer sdl2_image
|
2019-09-20 19:05:53 +03:00
|
|
|
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
|
2019-10-04 17:30:47 +03:00
|
|
|
- name: Build V
|
2019-12-23 13:02:50 +03:00
|
|
|
run: make -j4 && ./v -cg -o v v.v
|
2019-10-04 17:30:47 +03:00
|
|
|
- name: Build V using V
|
2019-10-14 07:08:02 +03:00
|
|
|
run: ./v -o v2 v.v && ./v2 -o v3 v.v
|
2019-12-02 11:59:05 +03:00
|
|
|
- name: Test symlink
|
|
|
|
run: sudo ./v symlink
|
2019-12-06 02:11:39 +03:00
|
|
|
- name: Set up pg database
|
|
|
|
run: |
|
2019-12-06 02:38:35 +03:00
|
|
|
brew services start postgresql
|
2019-12-06 02:53:31 +03:00
|
|
|
sleep 3
|
2019-12-07 16:13:25 +03:00
|
|
|
psql -d postgres -c 'select rolname from pg_roles'
|
|
|
|
psql -d postgres -c 'create database customerdb;'
|
2019-12-06 02:11:39 +03:00
|
|
|
psql -d customerdb -f examples/database/pg/mydb.sql
|
2019-09-22 17:24:15 +03:00
|
|
|
- name: Test v->c
|
2019-12-01 12:50:13 +03:00
|
|
|
run: ./v test-compiler
|
2019-12-01 16:12:51 +03:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-11-17 02:22:43 +03:00
|
|
|
# - name: Test v->js
|
|
|
|
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
2019-11-20 18:27:22 +03:00
|
|
|
- name: Test symlink
|
|
|
|
run: ./v symlink && v -o v2 v.v
|
2019-12-07 18:27:09 +03:00
|
|
|
- name: Test vsh
|
|
|
|
run: ./v examples/v_script.vsh
|
2019-11-10 05:29:51 +03:00
|
|
|
- name: Test vid
|
|
|
|
run: |
|
|
|
|
git clone --depth 1 https://github.com/vlang/vid.git
|
|
|
|
cd vid && ../v -o vid .
|
2019-09-22 17:24:15 +03:00
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
ubuntu:
|
2019-09-21 18:34:17 +03:00
|
|
|
runs-on: ubuntu-18.04
|
2019-09-20 19:05:53 +03:00
|
|
|
steps:
|
2019-12-27 22:29:39 +03:00
|
|
|
- uses: actions/checkout@v1
|
2019-09-20 19:05:53 +03:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
2019-09-21 18:34:17 +03:00
|
|
|
node-version: 12.x
|
2019-09-22 17:24:15 +03:00
|
|
|
- name: Install dependencies
|
2019-12-13 18:41:35 +03:00
|
|
|
run: sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list; sudo apt-get update; sudo apt-get install --quiet -y postgresql libpq-dev libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
2019-11-29 19:21:38 +03:00
|
|
|
- name: Build V
|
2019-12-22 00:09:33 +03:00
|
|
|
run: make -j4 && ./v -cc gcc -o v v.v
|
2019-11-29 19:21:38 +03:00
|
|
|
- name: Test V
|
2019-12-01 12:50:13 +03:00
|
|
|
run: ./v test-compiler
|
2019-12-01 16:12:51 +03:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-11-17 07:27:59 +03:00
|
|
|
# - name: Test v->js
|
|
|
|
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
2019-11-29 19:21:38 +03:00
|
|
|
- name: Build Vorum
|
2019-11-26 09:59:30 +03:00
|
|
|
run: git clone --depth 1 https://github.com/vlang/vorum && cd vorum && ../v . && cd ..
|
2019-12-04 01:49:52 +03:00
|
|
|
- name: Freestanding
|
2019-11-22 14:39:04 +03:00
|
|
|
run: ./v -freestanding -o bare vlib/os/bare/bare_example_linux.v
|
|
|
|
- name: x64 machine code generation
|
2019-11-22 19:58:28 +03:00
|
|
|
run: cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world
|
2019-09-22 17:24:15 +03:00
|
|
|
|
2019-11-29 19:21:38 +03:00
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
ubuntu-prebuilt:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
2019-12-04 01:49:52 +03:00
|
|
|
- name: Install dependencies
|
2019-12-13 18:41:35 +03:00
|
|
|
run: sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list; sudo apt-get update; sudo apt-get install --quiet -y postgresql libpq-dev libglfw3 libglfw3-dev libfreetype6-dev libssl-dev sqlite3 libsqlite3-dev libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
2019-11-29 19:14:26 +03:00
|
|
|
- name: Download V
|
2019-12-03 22:13:37 +03:00
|
|
|
run: wget https://github.com/vlang/v/releases/latest/download/v_linux.zip && unzip v_linux.zip && ./v --version
|
2019-11-29 19:26:21 +03:00
|
|
|
- name: Test V
|
2019-12-03 17:34:48 +03:00
|
|
|
run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples
|
2019-11-29 19:14:26 +03:00
|
|
|
|
|
|
|
|
2019-11-29 19:32:07 +03:00
|
|
|
macos-prebuilt:
|
2019-12-13 18:41:35 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [macOS-10.14, macOS-latest]
|
2019-11-29 19:32:07 +03:00
|
|
|
steps:
|
2019-12-04 01:49:52 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2019-12-08 23:30:38 +03:00
|
|
|
brew install freetype glfw openssl sdl2 sdl2_ttf sdl2_mixer sdl2_image
|
2019-12-04 01:49:52 +03:00
|
|
|
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
|
2019-11-29 19:32:07 +03:00
|
|
|
- name: Download V
|
2019-12-03 22:13:37 +03:00
|
|
|
run: wget https://github.com/vlang/v/releases/latest/download/v_macos.zip && unzip v_macos.zip && ./v --version
|
2019-11-29 19:32:07 +03:00
|
|
|
- name: Test V
|
2019-12-03 17:34:48 +03:00
|
|
|
run: ./v examples/hello_world.v && examples/hello_world && ./v build-examples
|
2019-11-29 19:47:57 +03:00
|
|
|
|
|
|
|
windows-prebuilt:
|
|
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
|
|
|
- name: Download V
|
2019-11-29 20:02:39 +03: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 19:47:57 +03:00
|
|
|
- name: Test V
|
2019-11-29 20:02:39 +03:00
|
|
|
run: echo "test" #./v.exe examples/hello_world.v && examples/hello_world.exe
|
2019-11-29 19:32:07 +03:00
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
ubuntu-musl:
|
2019-11-15 00:46:40 +03:00
|
|
|
runs-on: ubuntu-18.04
|
2019-12-01 16:12:51 +03:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc musl-gcc
|
2019-11-15 00:46:40 +03:00
|
|
|
steps:
|
2019-12-27 22:29:39 +03:00
|
|
|
- uses: actions/checkout@v1
|
2019-11-15 00:46:40 +03:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
2019-12-13 18:41:35 +03:00
|
|
|
run: sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list; sudo apt-get update; sudo apt-get install --quiet -y musl musl-tools libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
2019-11-15 00:46:40 +03:00
|
|
|
- name: Build v
|
2019-12-23 13:02:50 +03:00
|
|
|
run: echo $VFLAGS && make -j4 && ./v -cg -o v v.v
|
2019-12-01 16:12:51 +03:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-11-15 00:46:40 +03:00
|
|
|
# - name: Test v->js
|
|
|
|
# run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
|
2019-12-27 19:57:49 +03:00
|
|
|
ubuntu-llvm-mingw:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Cross-compile V
|
|
|
|
run: docker build . -f Dockerfile.cross
|
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
windows-gcc:
|
2019-09-21 18:34:17 +03:00
|
|
|
runs-on: windows-2019
|
2019-12-01 16:12:51 +03:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc gcc
|
2019-09-20 19:05:53 +03:00
|
|
|
steps:
|
2019-12-27 22:29:39 +03:00
|
|
|
- uses: actions/checkout@v1
|
2019-09-21 18:34:17 +03:00
|
|
|
#- uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
|
|
|
- name: Build
|
2019-09-20 19:05:53 +03:00
|
|
|
run: |
|
2019-09-28 20:41:11 +03:00
|
|
|
gcc --version
|
2019-09-20 19:05:53 +03:00
|
|
|
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
|
2019-09-21 18:34:17 +03:00
|
|
|
.\make.bat -gcc
|
|
|
|
- name: Test
|
|
|
|
run: |
|
2019-12-01 12:50:13 +03:00
|
|
|
.\v.exe test-compiler
|
2019-09-21 18:34:17 +03:00
|
|
|
## v.js dosent work on windows
|
|
|
|
#.\v.exe -o hi.js examples/hello_v_js.v
|
|
|
|
#node hi.js
|
2019-12-01 16:12:51 +03:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-09-22 17:24:15 +03:00
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
windows-msvc:
|
2019-09-21 18:34:17 +03:00
|
|
|
runs-on: windows-2019
|
2019-12-01 16:12:51 +03:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc msvc
|
2019-09-21 04:56:26 +03:00
|
|
|
steps:
|
2019-12-27 22:29:39 +03:00
|
|
|
- uses: actions/checkout@v1
|
2019-09-21 18:34:17 +03:00
|
|
|
#- uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
|
|
|
- name: Build
|
2019-09-21 04:56:26 +03:00
|
|
|
run: |
|
2019-12-01 16:12:51 +03:00
|
|
|
echo %VFLAGS%
|
|
|
|
echo $VFLAGS
|
2019-09-21 04:56:26 +03:00
|
|
|
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
|
2019-09-21 18:34:17 +03:00
|
|
|
.\make.bat -msvc
|
|
|
|
- name: Test
|
|
|
|
run: |
|
2019-12-01 12:50:13 +03:00
|
|
|
.\v.exe test-compiler
|
2019-09-21 18:34:17 +03:00
|
|
|
## v.js dosent work on windows
|
|
|
|
#.\v.exe -o hi.js examples/hello_v_js.v
|
|
|
|
#node hi.js
|
2019-12-01 16:12:51 +03:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2019-11-28 11:46:52 +03:00
|
|
|
|