2020-12-28 19:03:00 +01:00
|
|
|
name: Code CI
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2020-10-20 20:14:56 +02:00
|
|
|
on:
|
2022-05-15 08:06:01 +02:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
2020-10-20 20:14:56 +02:00
|
|
|
|
2021-12-21 17:55:02 +01:00
|
|
|
concurrency:
|
2022-01-24 13:36:42 +01:00
|
|
|
group: build-ci-${{ github.event.pull_request.number || github.sha }}
|
2021-12-21 17:55:02 +01:00
|
|
|
cancel-in-progress: true
|
2021-07-26 14:55:09 +02:00
|
|
|
|
2021-12-21 17:55:02 +01:00
|
|
|
jobs:
|
2019-12-21 22:09:33 +01:00
|
|
|
ubuntu-tcc:
|
2021-01-01 14:14:03 +01:00
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2019-12-21 22:09:33 +01:00
|
|
|
env:
|
2021-01-25 17:55:40 +01:00
|
|
|
VFLAGS: -cc tcc -no-retry-compilation
|
2019-12-21 22:09:33 +01:00
|
|
|
steps:
|
2021-01-23 16:56:38 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 08:22:24 +02:00
|
|
|
sudo apt-get update
|
2021-01-23 16:56:38 +01:00
|
|
|
sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 12:32:29 +02:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-01-23 16:56:38 +01:00
|
|
|
## The following is needed for examples/wkhtmltopdf.v
|
|
|
|
wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb
|
2021-07-14 08:22:24 +02:00
|
|
|
sudo apt-get install --quiet -y xfonts-75dpi xfonts-base
|
2021-01-23 16:56:38 +01:00
|
|
|
sudo dpkg -i wkhtmltox_0.12.6-1.focal_amd64.deb
|
|
|
|
- name: Build v
|
|
|
|
run: |
|
|
|
|
echo $VFLAGS
|
2021-03-14 15:12:18 +01:00
|
|
|
make
|
2022-05-15 08:06:01 +02:00
|
|
|
./v test-cleancode
|
2021-03-16 19:57:27 +01:00
|
|
|
./v -d debug_malloc -d debug_realloc -o v cmd/v
|
2021-04-19 14:38:48 +02:00
|
|
|
./v -cg -cstrict -o v cmd/v
|
2021-03-22 10:08:05 +01:00
|
|
|
# Test v -realloc arena allocation
|
|
|
|
./v -o vrealloc -prealloc cmd/v && ./vrealloc -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Test v->c
|
|
|
|
run: |
|
|
|
|
thirdparty/tcc/tcc.exe -version
|
|
|
|
./v -cg -o v cmd/v # Make sure vtcc can build itself twice
|
2022-02-16 20:02:16 +01:00
|
|
|
# ./v test-all
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: v self compilation
|
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2021-05-09 16:58:02 +02:00
|
|
|
- name: v self compilation with -skip-unused
|
|
|
|
run: ./v -skip-unused -o v2 cmd/v && ./v2 -skip-unused -o v3 cmd/v && ./v3 -skip-unused -o v4 cmd/v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
echo $VFLAGS
|
2021-01-23 16:56:38 +01:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 12:14:08 +02:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests
|
2022-02-16 20:02:16 +01:00
|
|
|
run: ./v test-self
|
2021-04-19 14:38:48 +02:00
|
|
|
# - name: Self tests (-cstrict)
|
|
|
|
# run: ./v -cstrict test-self
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Test time functions in a timezone UTC-12
|
|
|
|
run: TZ=Etc/GMT+12 ./v test vlib/time/
|
|
|
|
- name: Test time functions in a timezone UTC-3
|
|
|
|
run: TZ=Etc/GMT+3 ./v test vlib/time/
|
|
|
|
- name: Test time functions in a timezone UTC+3
|
|
|
|
run: TZ=Etc/GMT-3 ./v test vlib/time/
|
|
|
|
- name: Test time functions in a timezone UTC+12
|
|
|
|
run: TZ=Etc/GMT-12 ./v test vlib/time/
|
|
|
|
- name: Test time functions in a timezone using daylight saving (Europe/Paris)
|
|
|
|
run: TZ=Europe/Paris ./v test vlib/time/
|
|
|
|
- name: Build examples
|
2021-01-31 09:43:49 +01:00
|
|
|
run: ./v -W build-examples
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Test building v tools
|
2021-01-31 09:43:49 +01:00
|
|
|
run: ./v -W build-tools
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2021-09-10 11:43:53 +02:00
|
|
|
- name: Run a VSH script
|
|
|
|
run: ./v run examples/v_script.vsh
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Test v tutorials
|
2021-09-10 11:43:53 +02:00
|
|
|
run: ./v tutorials/building_a_simple_web_blog_with_vweb/code/blog
|
2021-07-20 12:06:59 +02:00
|
|
|
- name: Build cmd/tools/fast
|
2021-08-15 08:27:17 +02:00
|
|
|
run: cd cmd/tools/fast && ../../../v fast.v && ./fast
|
2021-12-29 17:29:08 +01:00
|
|
|
- name: V self compilation with -usecache
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
unset VFLAGS
|
2021-12-29 17:29:08 +01:00
|
|
|
./v -usecache examples/hello_world.v && examples/hello_world
|
|
|
|
./v -o v2 -usecache cmd/v
|
|
|
|
./v2 -o v3 -usecache cmd/v
|
|
|
|
./v3 version
|
|
|
|
./v3 -o tetris -usecache examples/tetris/tetris.v
|
2019-12-21 22:09:33 +01:00
|
|
|
|
2021-03-24 18:49:16 +01:00
|
|
|
ubuntu-tcc-boehm-gc:
|
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2021-03-24 18:49:16 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc tcc -no-retry-compilation
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 08:22:24 +02:00
|
|
|
sudo apt-get update
|
2021-03-24 18:49:16 +01:00
|
|
|
sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 12:32:29 +02:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-03-24 18:49:16 +01:00
|
|
|
sudo apt-get install --quiet -y libgc-dev
|
|
|
|
## The following is needed for examples/wkhtmltopdf.v
|
|
|
|
wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb
|
2021-07-14 08:22:24 +02:00
|
|
|
sudo apt-get install --quiet -y xfonts-75dpi xfonts-base
|
2021-03-24 18:49:16 +01:00
|
|
|
sudo dpkg -i wkhtmltox_0.12.6-1.focal_amd64.deb
|
|
|
|
- name: Build v
|
|
|
|
run: |
|
|
|
|
echo $VFLAGS
|
|
|
|
make
|
|
|
|
- name: Test v->c
|
|
|
|
run: |
|
|
|
|
thirdparty/tcc/tcc.exe -version
|
|
|
|
./v -cg -o v cmd/v # Make sure vtcc can build itself twice
|
2021-06-15 14:43:00 +02:00
|
|
|
- name: v self compilation with -gc boehm
|
2021-03-26 15:44:45 +01:00
|
|
|
run: |
|
2021-06-15 14:43:00 +02:00
|
|
|
./v -gc boehm -o v2 cmd/v && ./v2 -gc boehm -o v3 cmd/v && ./v3 -gc boehm -o v4 cmd/v
|
2021-03-26 15:44:45 +01:00
|
|
|
mv v4 v
|
2021-03-24 18:49:16 +01:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
2021-06-15 14:43:00 +02:00
|
|
|
- name: Verify `v -gc boehm test` works
|
2021-03-24 18:49:16 +01:00
|
|
|
run: |
|
2021-06-15 14:43:00 +02:00
|
|
|
./v -gc boehm cmd/tools/test_if_v_test_system_works.v
|
2021-03-24 18:49:16 +01:00
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 12:14:08 +02:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-06-15 14:43:00 +02:00
|
|
|
- name: Self tests with `-gc boehm` with V compiler using Boehm-GC itself
|
2022-02-16 20:02:16 +01:00
|
|
|
run: ./v -gc boehm test-self
|
2021-03-25 16:52:33 +01:00
|
|
|
- name: Test leak detector
|
|
|
|
run: |
|
2022-01-07 13:05:24 +01:00
|
|
|
./v -gc boehm_leak -o testcase_leak vlib/v/tests/testcase_leak.vv
|
2021-03-25 16:52:33 +01:00
|
|
|
./testcase_leak 2>leaks.txt
|
2022-04-18 09:50:21 +02:00
|
|
|
grep "Found 1 leaked object" leaks.txt && grep -P ", sz=\s?1000," leaks.txt
|
2021-06-15 14:43:00 +02:00
|
|
|
- name: Test leak detector not being active for `-gc boehm`
|
2021-03-25 16:52:33 +01:00
|
|
|
run: |
|
2022-01-07 13:05:24 +01:00
|
|
|
./v -gc boehm -o testcase_leak vlib/v/tests/testcase_leak.vv
|
2021-03-25 16:52:33 +01:00
|
|
|
./testcase_leak 2>leaks.txt
|
|
|
|
[ "$(stat -c %s leaks.txt)" = "0" ]
|
|
|
|
- name: Test leak detector not being active for normal compile
|
|
|
|
run: |
|
2022-01-07 13:05:24 +01:00
|
|
|
./v -o testcase_leak vlib/v/tests/testcase_leak.vv
|
2021-03-25 16:52:33 +01:00
|
|
|
./testcase_leak 2>leaks.txt
|
|
|
|
[ "$(stat -c %s leaks.txt)" = "0" ]
|
2021-03-24 18:49:16 +01:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
macos:
|
2020-11-29 16:18:49 +01:00
|
|
|
runs-on: macOS-latest
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2020-11-29 16:18:49 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc clang
|
2021-12-07 21:11:47 +01:00
|
|
|
PKG_CONFIG_PATH: /usr/local/opt/openssl@3/lib/pkgconfig
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
2021-01-23 16:56:38 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
##brew install libpq openssl freetype ### these are *already installed* on Catalina ...
|
|
|
|
brew uninstall --ignore-dependencies libpq ## libpq is a dependency of PHP
|
2021-10-01 12:13:05 +02:00
|
|
|
brew install postgresql openssl
|
2021-01-23 16:56:38 +01:00
|
|
|
export LIBRARY_PATH="$LIBRARY_PATH:/usr/local/opt/openssl/lib/"
|
2021-12-07 21:11:47 +01:00
|
|
|
echo "PKG_CONFIG_PATH is '$PKG_CONFIG_PATH'"
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cg -cstrict -o v cmd/v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Run sanitizers
|
|
|
|
run: |
|
|
|
|
./v -o v2 cmd/v -cflags -fsanitize=undefined
|
|
|
|
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v2 -o v.c cmd/v
|
|
|
|
- name: Build V using V
|
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v
|
|
|
|
- name: Test symlink
|
|
|
|
run: ./v symlink
|
|
|
|
# - 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
|
2022-02-16 20:02:16 +01:00
|
|
|
# run: ./v test-all
|
2021-01-23 16:56:38 +01:00
|
|
|
# - name: Test v binaries
|
|
|
|
# run: ./v build-vbinaries
|
|
|
|
## - name: Test v->js
|
|
|
|
## run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
echo $VFLAGS
|
2021-01-23 16:56:38 +01:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 12:14:08 +02:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests
|
2022-02-16 20:02:16 +01:00
|
|
|
run: VJOBS=1 ./v test-self
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build examples
|
|
|
|
run: ./v build-examples
|
|
|
|
- name: Build examples with -autofree
|
|
|
|
run: |
|
|
|
|
./v -autofree -o tetris examples/tetris/tetris.v
|
2021-03-20 14:17:04 +01:00
|
|
|
./v -autofree -o blog tutorials/building_a_simple_web_blog_with_vweb/code/blog
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
|
|
|
- name: Test ved
|
|
|
|
run: |
|
|
|
|
git clone --depth 1 https://github.com/vlang/ved
|
|
|
|
cd ved && ../v -o ved .
|
|
|
|
../v -autofree .
|
2021-04-13 12:40:37 +02:00
|
|
|
cd ..
|
2022-05-12 22:29:37 +02:00
|
|
|
# - name: Test c2v
|
|
|
|
# run: |
|
|
|
|
# git clone --depth 1 https://github.com/vlang/c2v
|
|
|
|
# cd c2v && ../v -o c2v .
|
|
|
|
# ../v .
|
|
|
|
# ../v run tests/run_tests.vsh
|
|
|
|
# ../v -experimental -w c2v_test.v
|
|
|
|
# cd ..
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build V UI examples
|
|
|
|
run: |
|
2021-11-22 21:05:09 +01:00
|
|
|
git clone --depth 1 https://github.com/vlang/ui
|
2021-01-23 16:56:38 +01:00
|
|
|
cd ui
|
|
|
|
mkdir -p ~/.vmodules
|
|
|
|
ln -s $(pwd) ~/.vmodules/ui
|
|
|
|
../v examples/rectangles.v
|
2021-08-10 14:29:14 +02:00
|
|
|
## ../v run examples/build_examples.vsh
|
2022-02-17 12:17:07 +01:00
|
|
|
- name: V self compilation with -usecache
|
|
|
|
run: |
|
|
|
|
unset VFLAGS
|
|
|
|
./v -usecache examples/hello_world.v && examples/hello_world
|
|
|
|
./v -o v2 -usecache cmd/v
|
|
|
|
./v2 -o v3 -usecache cmd/v
|
|
|
|
./v3 version
|
|
|
|
./v3 -o tetris -usecache examples/tetris/tetris.v
|
2019-09-22 16:24:15 +02:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
ubuntu:
|
2021-01-01 14:14:03 +01:00
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
2021-01-23 16:56:38 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 08:22:24 +02:00
|
|
|
sudo apt-get update
|
2021-01-23 16:56:38 +01:00
|
|
|
sudo apt-get install --quiet -y postgresql libpq-dev libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 12:32:29 +02:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cc gcc -cg -cstrict -o v cmd/v
|
2021-02-05 08:05:13 +01:00
|
|
|
- name: Valgrind v.c
|
2021-01-23 16:56:38 +01:00
|
|
|
run: valgrind --error-exitcode=1 ./v -o v.c cmd/v
|
|
|
|
- name: Run sanitizers
|
|
|
|
run: |
|
|
|
|
./v -o v2 cmd/v -cflags -fsanitize=thread
|
|
|
|
./v -o v3 cmd/v -cflags "-fsanitize=undefined -fno-sanitize=alignment"
|
|
|
|
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v2 -o v.c cmd/v
|
|
|
|
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v3 -o v.c cmd/v
|
|
|
|
# - name: Test V
|
2022-02-16 20:02:16 +01:00
|
|
|
# run: ./v test-all
|
2021-01-23 16:56:38 +01:00
|
|
|
# - name: Test v binaries
|
|
|
|
# run: ./v 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 ..
|
2022-04-05 07:02:47 +02:00
|
|
|
- name: Build vpm
|
|
|
|
run: git clone --depth 1 https://github.com/vlang/vpm && cd vpm && ../v . && cd ..
|
2021-04-22 11:50:38 +02:00
|
|
|
- name: Freestanding
|
|
|
|
run: ./v -freestanding run vlib/os/bare/bare_example_linux.v
|
2021-12-29 17:29:08 +01:00
|
|
|
- name: V self compilation
|
2021-01-23 16:56:38 +01:00
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2021-12-29 17:29:08 +01:00
|
|
|
- name: V self compilation with -usecache
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
unset VFLAGS
|
|
|
|
./v -usecache examples/hello_world.v && examples/hello_world
|
|
|
|
./v -o v2 -usecache cmd/v
|
|
|
|
./v2 -o v3 -usecache cmd/v
|
|
|
|
./v3 version
|
|
|
|
./v3 -o tetris -usecache examples/tetris/tetris.v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
echo $VFLAGS
|
2021-01-23 16:56:38 +01:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 12:14:08 +02:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests
|
2022-02-16 20:02:16 +01:00
|
|
|
run: ./v test-self
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests (-prod)
|
2022-02-16 20:02:16 +01:00
|
|
|
run: ./v -o vprod -prod cmd/v && ./vprod test-self
|
2021-04-19 14:38:48 +02:00
|
|
|
- name: Self tests (-cstrict)
|
|
|
|
run: ./v -cc gcc -cstrict test-self
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build examples
|
|
|
|
run: ./v build-examples
|
2021-03-17 13:22:20 +01:00
|
|
|
- name: Build tetris.v with -autofree
|
|
|
|
run: ./v -autofree -experimental -o tetris examples/tetris/tetris.v
|
|
|
|
- name: Build option_test.v with -autofree
|
|
|
|
run: ./v -autofree vlib/v/tests/option_test.v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build modules
|
|
|
|
run: |
|
|
|
|
./v build-module vlib/os
|
|
|
|
./v build-module vlib/builtin
|
|
|
|
./v build-module vlib/strconv
|
|
|
|
./v build-module vlib/time
|
|
|
|
./v build-module vlib/term
|
|
|
|
./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
|
2021-02-02 15:41:51 +01:00
|
|
|
./v build-module vlib/v/gen/c
|
2021-01-23 16:56:38 +01:00
|
|
|
./v build-module vlib/v/depgraph
|
|
|
|
./v build-module vlib/os/cmdline
|
2021-04-26 15:39:38 +02:00
|
|
|
- name: native machine code generation
|
2021-01-23 16:56:38 +01:00
|
|
|
run: |
|
|
|
|
exit
|
|
|
|
./v -o vprod -prod cmd/v
|
|
|
|
cd cmd/tools
|
|
|
|
echo "Generating a 1m line V file..."
|
|
|
|
../../vprod gen1m.v
|
|
|
|
./gen1m > 1m.v
|
|
|
|
echo "Building it..."
|
2021-04-26 15:39:38 +02:00
|
|
|
../../vprod -backend native -o 1m 1m.v
|
2021-01-23 16:56:38 +01:00
|
|
|
echo "Running it..."
|
|
|
|
ls
|
2021-04-19 14:38:48 +02:00
|
|
|
|
2021-01-23 16:56:38 +01:00
|
|
|
# ./1m
|
2021-09-06 19:38:51 +02:00
|
|
|
# run: echo "TODO" #cd examples/native && ../../v -native hello_world.v && ./hello_world
|
2021-01-23 16:56:38 +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-12-12 23:37:09 +01:00
|
|
|
ubuntu-clang:
|
2021-01-01 14:14:03 +01:00
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2020-12-12 23:37:09 +01:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc clang
|
|
|
|
steps:
|
2021-01-23 16:56:38 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 08:22:24 +02:00
|
|
|
sudo apt-get update
|
2021-01-23 16:56:38 +01:00
|
|
|
sudo apt-get install --quiet -y postgresql libpq-dev libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 12:32:29 +02:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-07-14 08:22:24 +02:00
|
|
|
sudo apt-get install --quiet -y clang
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cc clang -cg -cstrict -o v cmd/v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Valgrind
|
|
|
|
run: valgrind --error-exitcode=1 ./v -o v.c cmd/v
|
|
|
|
- name: Run sanitizers
|
|
|
|
run: |
|
|
|
|
./v -o v2 cmd/v -cflags -fsanitize=memory
|
|
|
|
./v -o v3 cmd/v -cflags -fsanitize=thread
|
|
|
|
./v -o v4 cmd/v -cflags -fsanitize=undefined
|
2021-03-22 23:05:48 +01:00
|
|
|
./v -o v5 cmd/v -cflags -fsanitize=address,pointer-compare,pointer-subtract
|
2021-01-23 16:56:38 +01:00
|
|
|
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v2 -o v.c cmd/v
|
|
|
|
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v3 -o v.c cmd/v
|
|
|
|
UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v4 -o v.c cmd/v
|
2021-02-07 23:10:01 +01:00
|
|
|
ASAN_OPTIONS=detect_leaks=0 UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v5 -o v.c cmd/v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: v self compilation
|
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2021-12-29 17:29:08 +01:00
|
|
|
- name: v self compilation with -usecache
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
unset VFLAGS
|
2021-12-29 17:29:08 +01:00
|
|
|
./v -usecache examples/hello_world.v && examples/hello_world
|
|
|
|
./v -o v2 -usecache cmd/v
|
|
|
|
./v2 -o v3 -usecache cmd/v
|
|
|
|
./v3 version
|
|
|
|
./v3 -o tetris -usecache examples/tetris/tetris.v
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
echo $VFLAGS
|
2021-01-23 16:56:38 +01:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 12:14:08 +02:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests
|
2022-02-16 20:02:16 +01:00
|
|
|
run: ./v test-self
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests (-prod)
|
2022-02-16 20:02:16 +01:00
|
|
|
run: ./v -o vprod -prod cmd/v && ./vprod test-self
|
2021-04-19 14:38:48 +02:00
|
|
|
- name: Self tests (-cstrict)
|
|
|
|
run: ./v -cstrict test-self
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build examples
|
|
|
|
run: ./v build-examples
|
|
|
|
- name: Build examples with -autofree
|
|
|
|
run: |
|
|
|
|
./v -autofree -experimental -o tetris examples/tetris/tetris.v
|
|
|
|
- name: Build modules
|
|
|
|
run: |
|
|
|
|
./v build-module vlib/os
|
|
|
|
./v build-module vlib/builtin
|
|
|
|
./v build-module vlib/strconv
|
|
|
|
./v build-module vlib/time
|
|
|
|
./v build-module vlib/term
|
|
|
|
./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
|
2021-02-02 15:41:51 +01:00
|
|
|
./v build-module vlib/v/gen/c
|
2021-01-23 16:56:38 +01:00
|
|
|
./v build-module vlib/v/depgraph
|
|
|
|
./v build-module vlib/os/cmdline
|
2021-04-26 15:39:38 +02:00
|
|
|
- name: native machine code generation
|
2021-01-23 16:56:38 +01:00
|
|
|
run: |
|
|
|
|
exit
|
|
|
|
./v -o vprod -prod cmd/v
|
|
|
|
cd cmd/tools
|
|
|
|
echo "Generating a 1m line V file..."
|
|
|
|
../../vprod gen1m.v
|
|
|
|
./gen1m > 1m.v
|
|
|
|
echo "Building it..."
|
2021-04-26 15:39:38 +02:00
|
|
|
../../vprod -backend native -o 1m 1m.v
|
2021-01-23 16:56:38 +01:00
|
|
|
echo "Running it..."
|
|
|
|
ls
|
2020-07-01 00:53:53 +02:00
|
|
|
|
2019-11-29 17:14:26 +01:00
|
|
|
windows-gcc:
|
2020-02-15 20:18:50 +01:00
|
|
|
runs-on: windows-2019
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
2021-01-23 16:56:38 +01:00
|
|
|
VFLAGS: -cc gcc
|
2022-02-17 12:23:46 +01:00
|
|
|
VERBOSE_MAKE: 1
|
2019-09-20 18:05:53 +02:00
|
|
|
steps:
|
2021-01-23 16:56:38 +01:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-15 16:12:22 +01:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
gcc --version
|
|
|
|
.\make.bat -gcc
|
|
|
|
- name: Test new v.c
|
2022-02-17 12:23:46 +01:00
|
|
|
run: |
|
|
|
|
.\v.exe -o v.c cmd/v
|
2022-04-20 23:12:50 +02:00
|
|
|
gcc -Werror -municode -w v.c
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
.\v.exe setup-freetype
|
|
|
|
.\.github\workflows\windows-install-sqlite.bat
|
2021-02-15 16:12:22 +01:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
echo $VFLAGS
|
2021-01-23 16:56:38 +01:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 12:14:08 +02:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests
|
2022-02-16 20:02:16 +01:00
|
|
|
run: .\v.exe test-self
|
2022-02-17 12:23:46 +01:00
|
|
|
# - name: Test
|
|
|
|
# run: .\v.exe test-all
|
2022-04-01 16:16:46 +02:00
|
|
|
- name: Test time functions in a timezone UTC-12
|
|
|
|
run: |
|
|
|
|
tzutil /s "Dateline Standard Time"
|
|
|
|
./v test vlib/time/
|
|
|
|
- name: Test time functions in a timezone UTC-3
|
|
|
|
run: |
|
|
|
|
tzutil /s "Greenland Standard Time"
|
|
|
|
./v test vlib/time/
|
|
|
|
- name: Test time functions in a timezone UTC+3
|
|
|
|
run: |
|
|
|
|
tzutil /s "Russian Standard Time"
|
|
|
|
./v test vlib/time/
|
|
|
|
- name: Test time functions in a timezone UTC+12
|
|
|
|
run: |
|
|
|
|
tzutil /s "New Zealand Standard Time"
|
|
|
|
./v test vlib/time/
|
2021-02-15 16:12:22 +01:00
|
|
|
- name: Test v->js
|
|
|
|
run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2021-02-15 16:12:22 +01:00
|
|
|
- name: Build examples
|
|
|
|
run: ./v build-examples
|
2021-01-23 16:56:38 +01: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
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2019-12-01 14:12:51 +01:00
|
|
|
env:
|
2021-01-23 16:56:38 +01:00
|
|
|
VFLAGS: -cc msvc
|
2022-02-17 12:23:46 +01:00
|
|
|
VERBOSE_MAKE: 1
|
2019-09-21 03:56:26 +02:00
|
|
|
steps:
|
2021-01-23 16:56:38 +01:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-15 16:12:22 +01:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
echo %VFLAGS%
|
|
|
|
echo $VFLAGS
|
2021-09-28 12:11:55 +02:00
|
|
|
.\make.bat -msvc
|
2021-01-23 16:56:38 +01:00
|
|
|
.\v.exe -cflags /WX self
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
.\v.exe setup-freetype
|
|
|
|
.\.github\workflows\windows-install-sqlite.bat
|
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 20:32:30 +01:00
|
|
|
echo $VFLAGS
|
2021-01-23 16:56:38 +01:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 12:14:08 +02:00
|
|
|
### TODO: test-cleancode fails with msvc. Investigate why???
|
|
|
|
## - name: All code is formatted
|
|
|
|
## run: ./v test-cleancode
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests
|
|
|
|
run: |
|
|
|
|
./v -cg cmd\tools\vtest-self.v
|
2022-02-16 20:02:16 +01:00
|
|
|
./v test-self
|
2022-05-12 22:29:37 +02:00
|
|
|
# - name: Test
|
|
|
|
# run: .\v.exe test-all
|
2021-02-15 16:12:22 +01:00
|
|
|
- name: Test v->js
|
|
|
|
run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
|
|
|
- name: Build examples
|
|
|
|
run: ./v build-examples
|
|
|
|
- name: v2 self compilation
|
|
|
|
run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v
|
2020-02-20 13:41:03 +01:00
|
|
|
|
2021-03-14 17:54:45 +01:00
|
|
|
windows-tcc:
|
2020-06-19 12:54:56 +02:00
|
|
|
runs-on: windows-2019
|
2021-07-29 17:04:02 +02:00
|
|
|
timeout-minutes: 121
|
2020-12-15 17:22:07 +01:00
|
|
|
env:
|
2021-01-25 17:55:40 +01:00
|
|
|
VFLAGS: -cc tcc -no-retry-compilation
|
2021-04-14 18:44:04 +02:00
|
|
|
VJOBS: 1
|
2021-04-19 14:38:48 +02:00
|
|
|
VTEST_SHOW_START: 1
|
2022-02-17 12:23:46 +01:00
|
|
|
VERBOSE_MAKE: 1
|
2020-06-19 12:54:56 +02:00
|
|
|
steps:
|
2021-01-23 16:56:38 +01:00
|
|
|
- uses: actions/checkout@v2
|
2021-02-15 16:12:22 +01:00
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Build with make.bat -tcc
|
|
|
|
run: |
|
2021-09-28 12:11:55 +02:00
|
|
|
.\make.bat -tcc
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Test new v.c
|
2022-02-17 12:23:46 +01:00
|
|
|
run: |
|
|
|
|
.\v.exe -o v.c cmd/v
|
2022-04-20 23:12:50 +02:00
|
|
|
.\thirdparty\tcc\tcc.exe -Werror -w -ladvapi32 -bt10 v.c
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
.\v.exe setup-freetype
|
|
|
|
.\.github\workflows\windows-install-sqlite.bat
|
2021-02-15 16:12:22 +01:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
|
|
|
.\v.exe cmd/tools/test_if_v_test_system_works.v
|
|
|
|
.\cmd\tools\test_if_v_test_system_works.exe
|
2021-07-31 11:35:05 +02:00
|
|
|
- name: Verify `v vlib/v/gen/c/coutput_test.v` works
|
|
|
|
run: |
|
|
|
|
.\v.exe vlib/v/gen/c/coutput_test.v
|
2021-02-27 19:19:11 +01:00
|
|
|
- name: Make sure running TCC64 instead of TCC32
|
2021-07-13 18:38:05 +02:00
|
|
|
run: ./v test .github\workflows\make_sure_ci_run_with_64bit_compiler_test.v
|
2021-03-19 16:22:27 +01:00
|
|
|
- name: Test ./v doc -v clipboard *BEFORE building tools*
|
|
|
|
run: ./v doc -v clipboard
|
|
|
|
- name: Test v build-tools
|
|
|
|
run: ./v -W build-tools
|
2022-05-17 12:14:08 +02:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 16:56:38 +01:00
|
|
|
- name: Self tests
|
2021-04-14 18:44:04 +02:00
|
|
|
run: ./v test-self
|
2021-02-15 16:12:22 +01:00
|
|
|
- name: Test v->js
|
|
|
|
run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2021-02-11 01:23:03 +01:00
|
|
|
- name: Build examples
|
|
|
|
run: ./v build-examples
|
2021-01-30 10:02:25 +01:00
|
|
|
- name: v2 self compilation
|
|
|
|
run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v
|
2021-02-25 12:52:12 +01:00
|
|
|
|
2021-11-22 21:05:09 +01:00
|
|
|
## ## tcc32
|
|
|
|
## - name: Build with make.bat -tcc32
|
|
|
|
## run: |
|
|
|
|
## Remove-Item -Recurse -Force .\thirdparty\tcc
|
|
|
|
## .\v.exe wipe-cache
|
|
|
|
## .\make.bat -tcc32
|
|
|
|
## - name: Test new v.c
|
2022-04-20 23:12:50 +02:00
|
|
|
## run: .\v.exe -o v.c cmd/v && .\thirdparty\tcc\tcc.exe -Werror -g -w -ladvapi32 -bt10 v.c
|
2021-11-22 21:05:09 +01:00
|
|
|
## - name: v doctor
|
|
|
|
## run: ./v doctor
|
|
|
|
##
|
|
|
|
## - name: Verify `v test` works
|
|
|
|
## run: |
|
|
|
|
## .\v.exe cmd/tools/test_if_v_test_system_works.v
|
|
|
|
## .\cmd\tools\test_if_v_test_system_works.exe
|
|
|
|
##
|
|
|
|
## - name: Verify `v vlib/v/gen/c/coutput_test.v` works
|
|
|
|
## run: |
|
|
|
|
## .\v.exe vlib/v/gen/c/coutput_test.v
|
|
|
|
##
|
|
|
|
## - name: Make sure running TCC32 instead of TCC64
|
|
|
|
## run: ./v -stats .github\workflows\make_sure_ci_run_with_32bit_compiler_test.v
|
|
|
|
##
|
|
|
|
## - name: Test v build-tools
|
|
|
|
## run: ./v -W build-tools
|
|
|
|
##
|
|
|
|
## - name: Test ./v doc clipboard
|
|
|
|
## run: ./v doc clipboard
|
|
|
|
##
|
|
|
|
## - name: Self tests
|
|
|
|
## run: ./v test-self
|
|
|
|
## - name: Test v->js
|
|
|
|
## run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
|
|
|
## - name: Test v binaries
|
|
|
|
## run: ./v build-vbinaries
|
|
|
|
## - name: Build examples
|
|
|
|
## run: ./v build-examples
|
|
|
|
## - 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
|
|
|
|
2022-05-12 22:29:37 +02:00
|
|
|
|
2022-05-13 11:24:11 +02:00
|
|
|
# ubuntu-autofree-selfcompile:
|
|
|
|
# runs-on: ubuntu-20.04
|
|
|
|
# timeout-minutes: 121
|
|
|
|
# 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
|
2022-01-23 11:50:19 +01:00
|
|
|
|
2022-05-12 22:29:37 +02:00
|
|
|
|
2022-05-13 11:24:11 +02:00
|
|
|
# ubuntu-musl:
|
|
|
|
# runs-on: ubuntu-20.04
|
|
|
|
# timeout-minutes: 121
|
|
|
|
# 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
|
|
|
|
# run: |
|
|
|
|
# sudo apt-get install --quiet -y musl musl-tools libssl-dev sqlite3 libsqlite3-dev valgrind
|
|
|
|
# - name: Build v
|
|
|
|
# run: echo $VFLAGS && make -j4 && ./v -cg -o v cmd/v
|
|
|
|
# # - name: Test v binaries
|
|
|
|
# # run: ./v 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: Self tests
|
|
|
|
# run: ./v test-self
|