v/.github/workflows/ci.yml

256 lines
8.7 KiB
YAML
Raw Normal View History

2019-09-20 18:05:53 +02:00
name: CI
on: [push, pull_request]
jobs:
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
2020-02-09 10:08:04 +01:00
- name: Build a production cmd/tools/vfmt
run: ./v -prod -d vfmt cmd/tools/vfmt.v
2019-12-30 05:42:23 +01: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
- name: Run v test-fmt
2019-12-31 16:06:01 +01:00
run: echo "TODO" #./v test-fmt
ubuntu-tcc:
runs-on: ubuntu-18.04
env:
VFLAGS: -cc tcc
steps:
- uses: actions/checkout@v1
- 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
2020-02-09 10:08:04 +01:00
run: echo $VFLAGS && make -j4 && ./v -cg -o v cmd/v
- name: Test v->c
run: |
sudo ln -s /var/tmp/tcc/bin/tcc /usr/local/bin/tcc
tcc -version
2020-02-09 10:08:04 +01:00
./v -o v2 cmd/v # Make sure vtcc can build itself
./v -silent test-compiler
- name: Test v binaries
run: ./v -silent build-vbinaries
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@v6.0
2019-11-28 09:46:52 +01:00
with:
entrypoint: .github/workflows/alpine.build.sh
- name: Test V
uses: spytheman/docker_alpine_v@v6.0
2019-11-28 09:46:52 +01:00
with:
entrypoint: .github/workflows/alpine.test.sh
2019-11-29 17:14:26 +01:00
macos:
2019-12-13 16:41:35 +01:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
2019-12-27 19:17:06 +01:00
os: [macOS-latest]
2019-09-20 18:05:53 +02:00
steps:
- uses: actions/checkout@v1
2019-09-20 18:05:53 +02:00
- uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
2019-09-20 18:05:53 +02:00
run: |
##brew install libpq openssl freetype ### these are *already installed* on Catalina ...
brew uninstall --ignore-dependencies libpq ## libpq is a dependency of PHP
brew install postgresql
brew install glfw sdl2 sdl2_ttf sdl2_mixer sdl2_image
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
2020-02-09 10:08:04 +01:00
run: make -j4 && ./v -cg -o v cmd/v
2019-10-04 16:30:47 +02:00
- name: Build V using V
2020-02-09 10:08:04 +01:00
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/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: |
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
2019-12-07 14:13:25 +01:00
psql -d postgres -c 'select rolname from pg_roles'
psql -d postgres -c 'create database customerdb;'
2019-12-06 00:11:39 +01:00
psql -d customerdb -f examples/database/pg/mydb.sql
- name: Test v->c
run: ./v -silent test-compiler
2019-12-01 14:12:51 +01:00
- name: Test v binaries
run: ./v -silent 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
2020-02-09 10:08:04 +01:00
run: ./v symlink && v -o v2 cmd/v
- name: Test vsh
run: ./v examples/v_script.vsh
- name: Test vid
run: |
git clone --depth 1 https://github.com/vlang/vid.git
cd vid && ../v -o vid .
2019-11-29 17:14:26 +01:00
ubuntu:
runs-on: ubuntu-18.04
2019-09-20 18:05:53 +02:00
steps:
- uses: actions/checkout@v1
2019-09-20 18:05:53 +02:00
- uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
2019-12-13 16:41:35 +01: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
- name: Build V
2020-02-09 10:08:04 +01:00
run: make -j4 && ./v -cc gcc -o v cmd/v
- name: Test V
run: ./v -silent test-compiler
2019-12-01 14:12:51 +01:00
- name: Test v binaries
run: ./v -silent 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
- 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 ..
2020-02-05 11:22:08 +01:00
- name: Build vpm
run: git clone --depth 1 https://github.com/vlang/vpm && cd vpm && ../v . && cd ..
- 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
run: |
2020-02-09 10:08:04 +01:00
./v -o vprod -prod cmd/v
cd cmd/tools
echo "Generating a 1m line V file..."
2020-02-09 10:08:04 +01:00
../../vprod gen1m.v
2020-01-20 02:19:16 +01:00
./gen1m > 1m.v
echo "Building it..."
2020-02-09 10:08:04 +01:00
../../vprod -x64 -o 1m 1m.v
echo "Running it..."
2020-01-07 00:14:19 +01:00
ls
# ./1m
#run: echo "TODO" #cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world
2019-11-29 17:14:26 +01:00
ubuntu-prebuilt:
runs-on: ubuntu-18.04
steps:
- name: Install dependencies
2019-12-13 16:41:35 +01: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 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
run: echo "TODO" # ./v examples/hello_world.v && examples/hello_world && ./v -silent build-examples
2019-11-29 17:14:26 +01:00
2019-11-29 17:32:07 +01:00
macos-prebuilt:
2020-02-15 14:45:10 +01:00
runs-on: macos-latest
2019-11-29 17:32:07 +01:00
steps:
- name: Install dependencies
run: |
brew install freetype glfw openssl sdl2 sdl2_ttf sdl2_mixer sdl2_image
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
2020-02-15 14:46:05 +01:00
run: ./v examples/hello_world.v && examples/hello_world #&& ./v -silent build-examples
2019-11-29 17:47:57 +01:00
windows-prebuilt:
2020-02-15 14:45:10 +01:00
runs-on: windows
2019-11-29 17:47:57 +01:00
steps:
- name: Download V
2020-01-08 11:35:23 +01:00
shell: bash
run: |
echo "Downloading v.exe..."
2020-01-08 14:05:45 +01:00
curl -L https://github.com/vbinaries/vbinaries/releases/download/latest/v_windows.zip -o v_windows.zip
2020-01-08 13:48:15 +01:00
echo "Unzipping..."
unzip v_windows.zip
./v.exe --version
echo "Done"
2020-01-08 17:23:34 +01:00
ls
2019-11-29 17:47:57 +01:00
- name: Test V
2020-01-08 14:18:26 +01:00
run: |
2020-01-09 01:50:50 +01:00
exit
2020-01-08 17:23:34 +01:00
./v.exe -o hi.exe examples/hello_world.v
ls
./hi.exe
./v.exe -silent build-examples
2019-11-29 17:32:07 +01: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
2019-11-14 22:46:40 +01:00
- uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
2019-12-13 16:41:35 +01: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-14 22:46:40 +01:00
- name: Build v
2020-02-09 10:08:04 +01:00
run: echo $VFLAGS && make -j4 && ./v -cg -o v cmd/v
2019-12-01 14:12:51 +01:00
- name: Test v binaries
run: ./v -silent 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
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 17:14:26 +01:00
windows-gcc:
2020-02-15 14:45:10 +01:00
runs-on: windows
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
#- uses: actions/setup-node@v1
# with:
# node-version: 12.x
- name: Build
2019-09-20 18:05:53 +02:00
run: |
gcc --version
2019-09-20 18:05:53 +02:00
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
.\make.bat -gcc
- name: Test
run: |
.\v.exe -silent test-compiler
## 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 -silent build-vbinaries
2019-11-29 17:14:26 +01:00
windows-msvc:
2020-02-15 14:45:10 +01:00
runs-on: windows
2019-12-01 14:12:51 +01:00
env:
VFLAGS: -cc msvc
steps:
- uses: actions/checkout@v1
#- uses: actions/setup-node@v1
# with:
# node-version: 12.x
- name: Build
run: |
2019-12-01 14:12:51 +01:00
echo %VFLAGS%
echo $VFLAGS
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
.\make.bat -msvc
- name: Test
run: |
.\v.exe -silent test-compiler
## 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 -silent build-vbinaries