2019-09-20 18:05:53 +02:00
|
|
|
name: CI
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2020-10-20 20:14:56 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
2020-11-18 18:28:28 +01:00
|
|
|
- "**.md"
|
2020-10-20 20:14:56 +02:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
2020-11-18 18:28:28 +01:00
|
|
|
- "**.md"
|
2020-10-20 20:14:56 +02:00
|
|
|
|
|
|
|
jobs:
|
2020-10-15 10:39:42 +02:00
|
|
|
code-formatting:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-10-15 10:39:42 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc /var/tmp/tcc/bin/tcc -cflags -bt10
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Environment info
|
|
|
|
run: echo $VFLAGS $GITHUB_SHA $GITHUB_REF
|
|
|
|
- name: Build local v
|
|
|
|
run: make -j4
|
2020-11-15 15:24:25 +01:00
|
|
|
- name: v test-cleancode
|
|
|
|
run: ./v -silent test-cleancode
|
2020-10-15 10:45:09 +02:00
|
|
|
- name: v test-fmt
|
|
|
|
run: ./v -silent test-fmt
|
2020-07-08 20:30:57 +02:00
|
|
|
|
2020-04-02 00:10:11 +02:00
|
|
|
# v-fmt:
|
|
|
|
# runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
# timeout-minutes: 30
|
2020-04-02 00:10:11 +02:00
|
|
|
# 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
|
|
|
|
# - name: Build a production cmd/tools/vfmt
|
|
|
|
# run: ./v -prod -d vfmt cmd/tools/vfmt.v
|
|
|
|
# - 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
|
|
|
|
# run: echo "TODO" #./v test-fmt
|
2019-12-25 13:54:48 +01:00
|
|
|
|
2020-10-02 11:39:39 +02:00
|
|
|
performance-regressions:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-10-02 11:39:39 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc /var/tmp/tcc/bin/tcc -cflags -bt10
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Environment info
|
|
|
|
run: echo $VFLAGS $GITHUB_SHA $GITHUB_REF
|
|
|
|
- name: Build local v
|
|
|
|
run: (make -j4 && ./v -cg -o v cmd/v)
|
|
|
|
- name: Clone & Build vmaster/v
|
|
|
|
run: |
|
|
|
|
git clone --depth=1 https://github.com/vlang/v vmaster/
|
|
|
|
(cd vmaster; make -j4 && ./v -cg -o v cmd/v)
|
|
|
|
- name: V versions
|
|
|
|
run: ./v version && ./vmaster/v version
|
|
|
|
- name: Build the repeat tool
|
|
|
|
run: ./v cmd/tools/repeat.v
|
|
|
|
- name: Repeat -o hw.c examples/hello_world.v
|
2020-10-09 10:06:00 +02:00
|
|
|
run: cmd/tools/repeat --max_time 150 --series 3 --count 15 --warmup 3 --fail_percent 10 './v -show-timings -o hw.c examples/hello_world.v' './vmaster/v -show-timings -o hw.c examples/hello_world.v'
|
2020-10-06 15:15:31 +02:00
|
|
|
- name: Repeat -o v.c cmd/v
|
2020-10-09 10:06:00 +02:00
|
|
|
run: cmd/tools/repeat --max_time 750 --series 3 --count 15 --warmup 3 --fail_percent 10 './v -show-timings -o v.c cmd/v' './vmaster/v -show-timings -o v.c cmd/v'
|
2020-10-02 11:39:39 +02:00
|
|
|
|
2019-12-21 22:09:33 +01:00
|
|
|
ubuntu-tcc:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2019-12-21 22:09:33 +01:00
|
|
|
env:
|
2020-06-08 10:37:10 +02:00
|
|
|
VFLAGS: -cc /var/tmp/tcc/bin/tcc -cflags -bt10
|
2019-12-21 22:09:33 +01:00
|
|
|
steps:
|
2020-04-07 17:37:01 +02:00
|
|
|
- uses: actions/checkout@v2
|
2019-12-21 22:09:33 +01:00
|
|
|
- name: Install dependencies
|
2020-07-28 18:17:44 +02:00
|
|
|
run: |
|
2020-08-11 00:51:15 +02:00
|
|
|
sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list; sudo apt-get update;
|
2020-08-24 08:58:03 +02:00
|
|
|
sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev valgrind
|
2020-08-24 09:11:05 +02:00
|
|
|
sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libxi-dev libxcursor-dev libasound2-dev
|
2020-08-11 00:51:15 +02:00
|
|
|
## sudo apt-get install --quiet -y libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
2019-12-21 22:09:33 +01:00
|
|
|
- name: Build v
|
2020-05-08 07:46:06 +02:00
|
|
|
run: |
|
2020-05-11 14:16:17 +02:00
|
|
|
echo $VFLAGS
|
|
|
|
make -j4
|
2020-05-08 07:46:06 +02:00
|
|
|
./v -cg -o v cmd/v
|
2019-12-21 22:09:33 +01:00
|
|
|
- name: Test v->c
|
|
|
|
run: |
|
|
|
|
sudo ln -s /var/tmp/tcc/bin/tcc /usr/local/bin/tcc
|
|
|
|
tcc -version
|
2020-05-08 07:46:06 +02:00
|
|
|
./v -cg -o v cmd/v # Make sure vtcc can build itself twice
|
2020-04-02 00:10:11 +02:00
|
|
|
# ./v -silent test-compiler
|
2020-10-14 19:04:41 +02:00
|
|
|
- name: v self compilation
|
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2020-10-15 12:45:34 +02:00
|
|
|
- name: Fixed tests
|
2020-10-18 18:38:45 +02:00
|
|
|
run: ./v -silent test-fixed
|
2020-10-14 19:04:41 +02:00
|
|
|
- name: Test building v tools
|
2020-10-18 18:38:45 +02:00
|
|
|
run: ./v -silent build-tools
|
2020-10-14 19:04:41 +02:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
2020-10-18 18:38:45 +02:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v -silent build-vbinaries
|
2019-12-21 22:09:33 +01:00
|
|
|
|
2020-07-08 20:30:57 +02:00
|
|
|
# Alpine docker pre-built container
|
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
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-07-11 11:41:39 +02:00
|
|
|
container:
|
2020-07-08 20:30:57 +02:00
|
|
|
image: thevlang/vlang:alpine-build
|
|
|
|
env:
|
|
|
|
V_CI_MUSL: 1
|
2020-07-01 18:57:14 +02:00
|
|
|
|
2020-07-08 20:30:57 +02:00
|
|
|
volumes:
|
|
|
|
- ${{github.workspace}}:/opt/vlang
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-07-11 11:41:39 +02:00
|
|
|
|
2020-07-08 20:30:57 +02:00
|
|
|
- name: Build V
|
|
|
|
run: |
|
|
|
|
make CC=clang
|
|
|
|
- name: Test V fixed tests
|
|
|
|
run: |
|
2020-10-18 18:38:45 +02:00
|
|
|
v -silent test-fixed
|
2019-11-28 09:46:52 +01:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
macos:
|
2019-12-13 16:41:35 +01:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2019-12-13 16:41:35 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-12-27 19:17:06 +01:00
|
|
|
os: [macOS-latest]
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
2020-04-07 17:37:01 +02:00
|
|
|
- uses: actions/checkout@v2
|
2020-04-07 17:41:18 +02:00
|
|
|
- uses: actions/setup-node@v1
|
2019-09-20 18:05:53 +02:00
|
|
|
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: |
|
2020-02-13 19:22:13 +01:00
|
|
|
##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
|
2020-08-11 00:51:15 +02:00
|
|
|
brew install glfw
|
2020-07-28 18:17:44 +02:00
|
|
|
## brew install 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
|
2020-04-02 00:10:11 +02:00
|
|
|
# - name: Set up pg database
|
|
|
|
# run: |
|
|
|
|
# pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
|
|
|
|
# psql -d postgres -c 'select rolname from pg_roles'
|
|
|
|
# psql -d postgres -c 'create database customerdb;'
|
|
|
|
# psql -d customerdb -f examples/database/pg/mydb.sql
|
|
|
|
# - name: Test v->c
|
|
|
|
# run: ./v -silent test-compiler
|
|
|
|
# - name: Test v binaries
|
|
|
|
# run: ./v -silent build-vbinaries
|
|
|
|
## - 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
|
2020-06-01 18:29:49 +02:00
|
|
|
- name: Fixed tests
|
2020-10-18 18:38:45 +02:00
|
|
|
run: VJOBS=1 ./v -silent test-fixed
|
2020-06-02 19:47:28 +02:00
|
|
|
- name: Build examples
|
2020-10-18 18:38:45 +02:00
|
|
|
run: ./v -silent build-examples
|
2020-11-27 20:41:17 +01:00
|
|
|
- name: Build examples with -autofree
|
|
|
|
run: |
|
2020-11-27 21:00:43 +01:00
|
|
|
./v -autofree -experimental -o tetris examples/tetris/tetris.v
|
2020-09-22 16:41:32 +02:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
2020-07-09 00:46:27 +02:00
|
|
|
- name: Cross-compilation to Linux
|
|
|
|
run: ./v -os linux cmd/v
|
2020-04-02 00:10:11 +02:00
|
|
|
# - name: Test vsh
|
|
|
|
# run: ./v examples/v_script.vsh
|
2020-11-19 16:22:51 +01:00
|
|
|
- name: Test ved
|
2020-06-04 16:05:12 +02:00
|
|
|
run: |
|
2020-11-19 16:22:51 +01:00
|
|
|
git clone --depth 1 https://github.com/vlang/ved
|
|
|
|
cd ved && ../v -o ved .
|
2020-11-21 19:12:52 +01:00
|
|
|
../v -autofree -experimental .
|
2020-06-04 12:28:03 +02:00
|
|
|
- name: Build V UI examples
|
|
|
|
run: |
|
|
|
|
git clone --depth 1 https://github.com/vlang/ui
|
|
|
|
cd ui
|
|
|
|
mkdir -p ~/.vmodules
|
|
|
|
ln -s $(pwd) ~/.vmodules/ui
|
|
|
|
../v examples/rectangles.v
|
2020-10-18 21:42:19 +02:00
|
|
|
../v run examples/build_examples.vsh
|
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
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
2020-04-07 17:37:01 +02:00
|
|
|
- uses: actions/checkout@v2
|
2020-04-07 17:41:18 +02:00
|
|
|
- uses: actions/setup-node@v1
|
2019-09-20 18:05:53 +02:00
|
|
|
with:
|
2019-09-21 17:34:17 +02:00
|
|
|
node-version: 12.x
|
2019-09-22 16:24:15 +02:00
|
|
|
- name: Install dependencies
|
2020-07-28 18:17:44 +02:00
|
|
|
run: |
|
2020-08-11 00:51:15 +02:00
|
|
|
sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list;
|
|
|
|
sudo apt-get update;
|
2020-08-24 08:58:03 +02:00
|
|
|
sudo apt-get install --quiet -y postgresql libpq-dev libssl-dev sqlite3 libsqlite3-dev valgrind
|
2020-08-24 09:11:05 +02:00
|
|
|
sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libxi-dev libxcursor-dev libasound2-dev
|
2020-07-28 18:17:44 +02:00
|
|
|
## sudo apt-get install --quiet -y libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
2019-11-29 17:21:38 +01:00
|
|
|
- name: Build V
|
2020-02-09 10:08:04 +01:00
|
|
|
run: make -j4 && ./v -cc gcc -o v cmd/v
|
2020-04-01 23:49:11 +02:00
|
|
|
# - name: Test V
|
|
|
|
# run: ./v -silent test-compiler
|
|
|
|
# - name: Test v binaries
|
|
|
|
# run: ./v -silent build-vbinaries
|
|
|
|
## - name: Test v->js
|
|
|
|
## run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
# - name: Build Vorum
|
|
|
|
# run: git clone --depth 1 https://github.com/vlang/vorum && cd vorum && ../v . && cd ..
|
|
|
|
# - name: Build vpm
|
|
|
|
# run: git clone --depth 1 https://github.com/vlang/vpm && cd vpm && ../v . && cd ..
|
|
|
|
# - name: Freestanding
|
|
|
|
# run: ./v -freestanding -o bare vlib/os/bare/bare_example_linux.v
|
|
|
|
- name: v self compilation
|
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2020-04-05 11:40:17 +02:00
|
|
|
- name: Fixed tests
|
2020-04-05 12:01:48 +02:00
|
|
|
run: |
|
2020-10-18 18:38:45 +02:00
|
|
|
./v -silent test-fixed
|
2020-07-11 12:19:59 +02:00
|
|
|
- name: Fixed tests (-prod)
|
2020-10-18 18:38:45 +02:00
|
|
|
run: ./v -o vprod -prod cmd/v && ./vprod -silent test-fixed
|
2020-06-02 20:16:32 +02:00
|
|
|
- name: Build examples
|
2020-10-18 18:38:45 +02:00
|
|
|
run: ./v -silent build-examples
|
2020-11-27 20:41:17 +01:00
|
|
|
- name: Build examples with -autofree
|
|
|
|
run: |
|
2020-11-27 21:00:43 +01:00
|
|
|
./v -autofree -experimental -o tetris examples/tetris/tetris.v
|
2020-07-14 18:27:11 +02:00
|
|
|
- name: Build modules
|
|
|
|
run: |
|
|
|
|
./v build-module vlib/os
|
|
|
|
./v build-module vlib/builtin
|
|
|
|
./v build-module vlib/strconv
|
2020-10-21 00:17:47 +02:00
|
|
|
./v build-module vlib/time
|
2020-10-21 08:45:32 +02:00
|
|
|
./v build-module vlib/term
|
2020-10-21 00:17:47 +02:00
|
|
|
./v build-module vlib/math
|
|
|
|
./v build-module vlib/strings
|
|
|
|
./v build-module vlib/v/token
|
|
|
|
./v build-module vlib/v/ast
|
|
|
|
./v build-module vlib/v/parser
|
2020-10-21 09:13:50 +02:00
|
|
|
./v build-module vlib/v/gen
|
2020-10-21 00:17:47 +02:00
|
|
|
./v build-module vlib/v/depgraph
|
|
|
|
./v build-module vlib/os/cmdline
|
2019-11-22 12:39:04 +01:00
|
|
|
- name: x64 machine code generation
|
2020-01-06 23:15:37 +01:00
|
|
|
run: |
|
2020-04-07 03:50:22 +02:00
|
|
|
exit
|
2020-02-09 10:08:04 +01:00
|
|
|
./v -o vprod -prod cmd/v
|
|
|
|
cd cmd/tools
|
2020-01-06 23:15:37 +01:00
|
|
|
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
|
2020-01-06 23:15:37 +01:00
|
|
|
echo "Building it..."
|
2020-03-06 18:53:29 +01:00
|
|
|
../../vprod -backend x64 -o 1m 1m.v
|
2020-01-06 23:15:37 +01:00
|
|
|
echo "Running it..."
|
2020-01-07 00:14:19 +01:00
|
|
|
ls
|
2020-04-01 15:39:54 +02:00
|
|
|
# - name: SDL examples
|
|
|
|
# run: git clone --depth 1 https://github.com/vlang/sdl && cd sdl
|
|
|
|
|
2020-01-07 01:08:24 +01:00
|
|
|
# ./1m
|
2020-01-06 23:15:37 +01:00
|
|
|
#run: echo "TODO" #cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world
|
2020-03-11 21:11:27 +01:00
|
|
|
# - name: Coveralls GitHub Action
|
|
|
|
# uses: coverallsapp/github-action@v1.0.1
|
|
|
|
# with:
|
|
|
|
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2020-07-01 00:53:53 +02:00
|
|
|
|
2020-09-05 12:00:35 +02:00
|
|
|
# ubuntu-autofree-selfcompile:
|
|
|
|
# runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
# timeout-minutes: 30
|
2020-09-05 12:00:35 +02:00
|
|
|
# env:
|
|
|
|
# VFLAGS: -cc gcc
|
|
|
|
# steps:
|
|
|
|
# - uses: actions/checkout@v2
|
|
|
|
# - name: Build V
|
|
|
|
# run: make -j4
|
|
|
|
# - name: V self compilation with -autofree
|
|
|
|
# run: ./v -o v2 -autofree cmd/v && ./v2 -o v3 -autofree cmd/v && ./v3 -o v4 -autofree cmd/v
|
2020-07-01 00:53:53 +02:00
|
|
|
|
2020-07-08 20:30:57 +02:00
|
|
|
|
|
|
|
# Ubuntu docker pre-built container
|
2020-07-11 11:41:39 +02:00
|
|
|
ubuntu-musl:
|
2020-07-08 20:30:57 +02:00
|
|
|
name: ubuntu-musl
|
|
|
|
runs-on: ubuntu-latest
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-07-11 11:41:39 +02:00
|
|
|
container:
|
2020-07-08 20:30:57 +02:00
|
|
|
image: thevlang/vlang:ubuntu-build
|
|
|
|
env:
|
|
|
|
V_CI_MUSL: 1
|
|
|
|
V_CI_UBUNTU_MUSL: 1
|
|
|
|
VFLAGS: -cc musl-gcc
|
|
|
|
volumes:
|
|
|
|
- ${{github.workspace}}:/opt/vlang
|
2019-11-14 22:46:40 +01:00
|
|
|
steps:
|
2020-07-08 20:30:57 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-07-11 11:41:39 +02:00
|
|
|
|
2020-07-08 20:30:57 +02:00
|
|
|
- name: Build V
|
|
|
|
run: |
|
|
|
|
echo $VFLAGS && make -j4 && ./v -cg -o v cmd/v
|
|
|
|
- name: Test V fixed tests
|
|
|
|
run: |
|
2020-10-18 18:38:45 +02:00
|
|
|
./v -silent test-fixed
|
2020-07-08 20:30:57 +02:00
|
|
|
|
|
|
|
# ubuntu-musl:
|
|
|
|
# runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
# timeout-minutes: 30
|
2020-07-08 20:30:57 +02:00
|
|
|
# env:
|
|
|
|
# VFLAGS: -cc musl-gcc
|
|
|
|
# V_CI_MUSL: 1
|
|
|
|
# steps:
|
|
|
|
# - uses: actions/checkout@v2
|
|
|
|
# - uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
|
|
|
# - name: Install dependencies
|
2020-07-28 18:17:44 +02:00
|
|
|
# run: |
|
2020-08-11 00:51:15 +02:00
|
|
|
# sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list;
|
|
|
|
# sudo apt-get update;
|
2020-07-28 18:17:44 +02:00
|
|
|
# sudo apt-get install --quiet -y musl musl-tools libssl-dev sqlite3 libsqlite3-dev valgrind
|
2020-08-11 00:51:15 +02:00
|
|
|
# sudo apt-get install --quiet -y libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
2020-07-08 20:30:57 +02:00
|
|
|
# - name: Build v
|
|
|
|
# run: echo $VFLAGS && make -j4 && ./v -cg -o v cmd/v
|
|
|
|
# # - name: Test v binaries
|
|
|
|
# # run: ./v -silent build-vbinaries
|
|
|
|
# ## - name: Test v->js
|
|
|
|
# ## run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
# - name: quick debug
|
|
|
|
# run: ./v -stats vlib/strconv/format_test.v
|
|
|
|
# - name: Fixed tests
|
2020-10-18 18:38:45 +02:00
|
|
|
# run: ./v -silent test-fixed
|
2019-11-14 22:46:40 +01:00
|
|
|
|
2019-12-27 17:57:49 +01:00
|
|
|
ubuntu-llvm-mingw:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2019-12-27 17:57:49 +01:00
|
|
|
steps:
|
2020-04-07 17:37:01 +02:00
|
|
|
- uses: actions/checkout@v2
|
2020-04-02 02:17:33 +02:00
|
|
|
# - name: Cross-compile V
|
|
|
|
# run: docker build . -f Dockerfile.cross
|
2019-12-27 17:57:49 +01:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
windows-gcc:
|
2020-02-15 20:18:50 +01:00
|
|
|
runs-on: windows-2019
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc gcc
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
2020-04-07 17:37:01 +02:00
|
|
|
- uses: actions/checkout@v2
|
2019-09-21 17:34:17 +02:00
|
|
|
#- uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
2020-04-02 13:44:46 +02:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
gcc --version
|
2020-07-10 21:50:29 +02:00
|
|
|
.\make.bat -gcc
|
2020-05-18 18:18:29 +02:00
|
|
|
- name: Test new v.c
|
2020-05-18 18:31:37 +02:00
|
|
|
run: .\v.exe -o v.c cmd/v && gcc -municode -w v.c
|
2020-05-11 16:25:37 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
.\v.exe setup-freetype
|
2020-06-27 20:23:20 +02:00
|
|
|
.\.github\workflows\windows-install-sqlite.bat
|
2020-07-28 18:17:44 +02:00
|
|
|
## .\.github\workflows\windows-install-sdl.bat
|
2020-05-02 17:22:34 +02:00
|
|
|
- name: Fixed tests
|
|
|
|
run: |
|
2020-10-18 18:38:45 +02:00
|
|
|
.\v.exe -silent test-fixed
|
2020-04-02 00:10:11 +02:00
|
|
|
# - name: Test
|
|
|
|
# run: |
|
|
|
|
# .\v.exe -silent 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
|
2020-04-02 00:10:11 +02:00
|
|
|
# - name: Test v binaries
|
|
|
|
# run: ./v -silent build-vbinaries
|
2020-04-02 02:17:33 +02:00
|
|
|
# - name: v2 self compilation
|
|
|
|
# run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
windows-msvc:
|
2020-02-15 20:18:50 +01:00
|
|
|
runs-on: windows-2019
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc msvc
|
2019-09-21 03:56:26 +02:00
|
|
|
steps:
|
2020-04-07 17:37:01 +02:00
|
|
|
- uses: actions/checkout@v2
|
2019-09-21 17:34:17 +02:00
|
|
|
#- uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
2020-04-02 14:36:10 +02:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
echo %VFLAGS%
|
|
|
|
echo $VFLAGS
|
2020-07-10 21:50:29 +02:00
|
|
|
.\make.bat -msvc
|
2020-05-11 16:25:37 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
.\v.exe setup-freetype
|
2020-06-27 20:23:20 +02:00
|
|
|
.\.github\workflows\windows-install-sqlite.bat
|
2020-07-28 18:17:44 +02:00
|
|
|
## .\.github\workflows\windows-install-sdl.bat
|
2020-04-11 16:32:31 +02:00
|
|
|
- name: Fixed tests
|
|
|
|
run: |
|
2020-04-16 11:29:36 +02:00
|
|
|
./v -cg cmd\tools\vtest-fixed.v
|
2020-10-18 18:38:45 +02:00
|
|
|
./v -silent test-fixed
|
2020-09-22 16:41:32 +02:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
2020-04-02 02:17:33 +02:00
|
|
|
# - name: Test
|
|
|
|
# run: |
|
|
|
|
# .\v.exe -silent test-compiler
|
2020-04-11 16:32:31 +02:00
|
|
|
# ## v.js dosent work on windows
|
2019-09-21 17:34:17 +02:00
|
|
|
#.\v.exe -o hi.js examples/hello_v_js.v
|
|
|
|
#node hi.js
|
2020-04-02 00:10:11 +02:00
|
|
|
# - name: Test v binaries
|
|
|
|
# run: ./v -silent build-vbinaries
|
2020-02-20 13:41:03 +01:00
|
|
|
|
2020-06-19 12:54:56 +02:00
|
|
|
windows-tcc:
|
|
|
|
runs-on: windows-2019
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-06-19 12:54:56 +02:00
|
|
|
# We are simulating a user with no cc installed.
|
|
|
|
# This way, v's cc detection on Windows is also tested.
|
|
|
|
# env:
|
|
|
|
# VFLAGS: -cc tcc
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
#- uses: actions/setup-node@v1
|
|
|
|
# with:
|
|
|
|
# node-version: 12.x
|
|
|
|
- name: Build
|
2020-07-10 21:50:29 +02:00
|
|
|
# We need to move gcc and msvc, so that V can't find an existing C compiler and downloads tcc
|
2020-06-19 12:54:56 +02:00
|
|
|
run: |
|
|
|
|
'for /f "usebackq tokens=*" %i in (`where gcc.exe`) do move /Y "%i" "%i.old"' | cmd
|
|
|
|
'for /f "usebackq tokens=*" %i in (`where vswhere.exe`) do move /Y "%i" "%i.old"' | cmd
|
|
|
|
move "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe.old"
|
2020-07-10 21:50:29 +02:00
|
|
|
.\make.bat
|
2020-06-19 12:54:56 +02:00
|
|
|
- name: Test new v.c
|
|
|
|
run: .\v.exe -o v.c cmd/v && .\thirdparty\tcc\tcc.exe -w -ladvapi32 -bt10 v.c
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
.\v.exe setup-freetype
|
2020-06-27 20:23:20 +02:00
|
|
|
.\.github\workflows\windows-install-sqlite.bat
|
2020-07-28 18:17:44 +02:00
|
|
|
## .\.github\workflows\windows-install-sdl.bat
|
2020-06-19 12:54:56 +02:00
|
|
|
- name: Fixed tests
|
|
|
|
run: |
|
2020-10-18 18:38:45 +02:00
|
|
|
.\v.exe -silent test-fixed
|
2020-06-19 12:54:56 +02:00
|
|
|
# - 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
|
|
|
|
# - name: Test v binaries
|
|
|
|
# run: ./v -silent build-vbinaries
|
|
|
|
# - name: v2 self compilation
|
|
|
|
# run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v
|
|
|
|
|
2020-05-18 18:02:25 +02:00
|
|
|
|
|
|
|
compilable-v-c-and-v-win-c:
|
|
|
|
runs-on: ubuntu-latest
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-05-18 18:02:25 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- 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
|
2020-05-18 21:51:36 +02:00
|
|
|
sudo apt install --quiet -y mingw-w64 wine-stable winetricks
|
2020-05-18 18:02:25 +02:00
|
|
|
- name: Build V
|
|
|
|
run: make -j4
|
2020-05-18 21:51:36 +02:00
|
|
|
- name: v.c can be compiled and run
|
2020-05-18 18:02:25 +02:00
|
|
|
run: |
|
|
|
|
./v -os cross -o /tmp/v.c cmd/v
|
2020-05-22 07:36:56 +02:00
|
|
|
gcc -g -std=gnu11 -w -o v_from_vc /tmp/v.c -lm -lpthread
|
2020-05-18 18:02:25 +02:00
|
|
|
ls -lart v_from_vc
|
2020-05-18 21:51:36 +02:00
|
|
|
./v_from_vc version
|
|
|
|
- name: v_win.c can be compiled and run
|
2020-05-18 18:02:25 +02:00
|
|
|
run: |
|
|
|
|
./v -os windows -o /tmp/v_win.c cmd/v
|
|
|
|
x86_64-w64-mingw32-gcc /tmp/v_win.c -std=c99 -w -municode -o v_from_vc.exe
|
|
|
|
ls -lart v_from_vc.exe
|
2020-05-18 21:51:36 +02:00
|
|
|
winetricks nocrashdialog
|
|
|
|
wine v_from_vc.exe version
|
2020-05-18 21:38:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
ubuntu-c-plus-plus:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-05-18 21:38:06 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
2020-07-28 18:17:44 +02:00
|
|
|
run: |
|
2020-08-11 00:51:15 +02:00
|
|
|
sudo rm -f /etc/apt/sources.list.d/dotnetdev.list /etc/apt/sources.list.d/microsoft-prod.list;
|
|
|
|
sudo apt-get update;
|
2020-08-24 08:58:03 +02:00
|
|
|
sudo apt-get install --quiet -y postgresql libpq-dev libssl-dev sqlite3 libsqlite3-dev
|
2020-08-24 09:11:05 +02:00
|
|
|
sudo apt-get install --quiet -y libglfw3 libglfw3-dev libfreetype6-dev libxi-dev libxcursor-dev libasound2-dev
|
2020-08-11 00:51:15 +02:00
|
|
|
sudo apt-get install --quiet -y valgrind g++-9
|
|
|
|
## sudo apt-get install --quiet -y libsdl2-dev libsdl2-ttf-dev libsdl2-mixer-dev libsdl2-image-dev
|
2020-05-18 21:38:06 +02:00
|
|
|
- name: Build V
|
|
|
|
run: make -j4
|
|
|
|
- name: g++ version
|
|
|
|
run: g++-9 --version
|
2020-08-24 08:58:03 +02:00
|
|
|
- name: V self compilation with g++
|
|
|
|
run: ./v -cc g++-9 -o v2 cmd/v && ./v2 -cc g++-9 -o v3 cmd/v
|
|
|
|
## - name: Running tests with g++
|
2020-10-18 18:38:45 +02:00
|
|
|
## run: ./v -cc g++-9 -silent test-fixed
|
2020-05-20 11:20:06 +02:00
|
|
|
|
|
|
|
install-modules:
|
|
|
|
runs-on: ubuntu-latest
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-05-20 11:20:06 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
|
|
run: sudo apt-get install --quiet -y libssl-dev
|
|
|
|
- name: Build V
|
|
|
|
run: make -j4
|
|
|
|
- name: Installing V modules
|
|
|
|
run: |
|
|
|
|
./v install ui
|
|
|
|
./v install nedpals.args
|
2020-07-08 07:59:05 +02:00
|
|
|
|
|
|
|
gitly-compiles:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-07-08 07:59:05 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
|
|
run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev
|
|
|
|
- name: Build V
|
|
|
|
run: make -j2 && ./v -cc gcc -o v cmd/v
|
2020-07-10 09:32:49 +02:00
|
|
|
- name: Install markdown
|
|
|
|
run: ./v install markdown
|
2020-07-08 07:59:05 +02:00
|
|
|
- name: Build Gitly
|
|
|
|
run: |
|
|
|
|
git clone --depth 1 https://github.com/vlang/gitly
|
|
|
|
cd gitly
|
|
|
|
../v .
|
2020-11-07 04:07:43 +01:00
|
|
|
../v -autofree -experimental .
|
2020-07-08 07:59:05 +02:00
|
|
|
cd ..
|
2020-08-22 00:50:38 +02:00
|
|
|
|
2020-11-08 17:46:06 +01:00
|
|
|
websocket_autobahn:
|
|
|
|
name: Autobahn integrations tests
|
|
|
|
runs-on: ubuntu-latest
|
2020-11-19 09:36:30 +01:00
|
|
|
timeout-minutes: 30
|
2020-11-08 17:46:06 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-11-07 17:14:33 +01:00
|
|
|
|
2020-11-08 17:46:06 +01:00
|
|
|
- name: Run autobahn services
|
|
|
|
run: docker-compose -f ${{github.workspace}}/vlib/x/websocket/tests/autobahn/docker-compose.yml up -d
|
|
|
|
- name: Build client test
|
|
|
|
run: docker exec autobahn_client "/src/v" "/src/vlib/x/websocket/tests/autobahn/autobahn_client.v"
|
|
|
|
- name: Run client test
|
|
|
|
run: docker exec autobahn_client "/src/vlib/x/websocket/tests/autobahn/autobahn_client"
|
2020-11-21 14:45:45 +01:00
|
|
|
- name: Build client wss test
|
|
|
|
run: docker exec autobahn_client "/src/v" "/src/vlib/x/websocket/tests/autobahn/autobahn_client_wss.v"
|
|
|
|
- name: Run client wss test
|
|
|
|
run: docker exec autobahn_client "/src/vlib/x/websocket/tests/autobahn/autobahn_client_wss"
|
2020-11-08 17:46:06 +01:00
|
|
|
- name: Run server test
|
|
|
|
run: docker exec autobahn_server "wstest" "-m" "fuzzingclient" "-s" "/config/fuzzingclient.json"
|
|
|
|
- name: Copy reports
|
|
|
|
run: docker cp autobahn_server:/reports ${{github.workspace}}/reports
|
2020-11-21 14:45:45 +01:00
|
|
|
- name: Copy reports wss
|
|
|
|
run: docker cp autobahn_server_wss:/reports ${{github.workspace}}/reports_wss
|
2020-11-08 17:46:06 +01:00
|
|
|
- name: Test success
|
|
|
|
run: docker exec autobahn_server "python" "/check_results.py"
|
2020-11-21 14:45:45 +01:00
|
|
|
- name: Test success WSS
|
|
|
|
run: docker exec autobahn_server_wss "python" "/check_results.py"
|
2020-11-07 17:14:33 +01:00
|
|
|
|
2020-11-08 17:46:06 +01:00
|
|
|
- name: Publish all reports
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: full report
|
|
|
|
path: ${{github.workspace}}/reports
|
|
|
|
- name: Publish report client
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: client
|
|
|
|
path: ${{github.workspace}}/reports/clients/index.html
|
|
|
|
- name: Publish report server
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: server
|
|
|
|
path: ${{github.workspace}}/reports/servers/index.html
|
2020-11-21 14:45:45 +01:00
|
|
|
- name: Publish all reports WSS
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: full report wss
|
|
|
|
path: ${{github.workspace}}/reports_wss
|
|
|
|
- name: Publish report client wss
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: client wss
|
|
|
|
path: ${{github.workspace}}/reports_wss/clients/index.html
|