2023-01-19 15:28:37 +03:00
|
|
|
name: Code CI Linux
|
2019-09-22 17:24:15 +03:00
|
|
|
|
2020-10-20 21:14:56 +03:00
|
|
|
on:
|
2022-05-15 09:06:01 +03:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
2022-08-26 21:07:29 +03:00
|
|
|
- "**.yml"
|
2022-05-15 09:06:01 +03:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
2022-08-26 21:07:29 +03:00
|
|
|
- "**.yml"
|
2020-10-20 21:14:56 +03:00
|
|
|
|
2021-12-21 19:55:02 +03:00
|
|
|
concurrency:
|
2023-01-19 15:28:37 +03:00
|
|
|
group: build-ci-linux-${{ github.event.pull_request.number || github.sha }}
|
2021-12-21 19:55:02 +03:00
|
|
|
cancel-in-progress: true
|
2021-07-26 15:55:09 +03:00
|
|
|
|
2021-12-21 19:55:02 +03:00
|
|
|
jobs:
|
2019-12-22 00:09:33 +03:00
|
|
|
ubuntu-tcc:
|
2021-01-01 16:14:03 +03:00
|
|
|
runs-on: ubuntu-20.04
|
2022-05-22 20:19:04 +03:00
|
|
|
if: github.event_name != 'push' || github.event.ref == 'refs/heads/master' || github.event.repository.full_name != 'vlang/v'
|
2021-07-29 18:04:02 +03:00
|
|
|
timeout-minutes: 121
|
2019-12-22 00:09:33 +03:00
|
|
|
env:
|
2021-01-25 19:55:40 +03:00
|
|
|
VFLAGS: -cc tcc -no-retry-compilation
|
2019-12-22 00:09:33 +03:00
|
|
|
steps:
|
2023-02-21 14:40:24 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 09:22:24 +03:00
|
|
|
sudo apt-get update
|
2021-01-23 18:56:38 +03:00
|
|
|
sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 13:32:29 +03:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-01-23 18:56:38 +03: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 09:22:24 +03:00
|
|
|
sudo apt-get install --quiet -y xfonts-75dpi xfonts-base
|
2022-08-23 18:17:38 +03:00
|
|
|
sudo apt-get install --quiet -y expect
|
2021-01-23 18:56:38 +03:00
|
|
|
sudo dpkg -i wkhtmltox_0.12.6-1.focal_amd64.deb
|
|
|
|
- name: Build v
|
|
|
|
run: |
|
|
|
|
echo $VFLAGS
|
2021-03-14 17:12:18 +03:00
|
|
|
make
|
2022-05-15 09:06:01 +03:00
|
|
|
./v test-cleancode
|
2021-03-16 21:57:27 +03:00
|
|
|
./v -d debug_malloc -d debug_realloc -o v cmd/v
|
2021-04-19 15:38:48 +03:00
|
|
|
./v -cg -cstrict -o v cmd/v
|
2021-03-22 12:08:05 +03: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 18:56:38 +03: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 22:02:16 +03:00
|
|
|
# ./v test-all
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: v self compilation
|
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2021-05-09 17:58:02 +03: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 18:56:38 +03:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 22:32:30 +03:00
|
|
|
echo $VFLAGS
|
2021-01-23 18:56:38 +03:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 13:14:08 +03:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Self tests
|
2022-02-16 22:02:16 +03:00
|
|
|
run: ./v test-self
|
2021-04-19 15:38:48 +03:00
|
|
|
# - name: Self tests (-cstrict)
|
2022-05-19 11:52:31 +03:00
|
|
|
# run: V_CI_CSTRICT=1 ./v -cstrict test-self
|
2021-01-23 18:56:38 +03: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 11:43:49 +03:00
|
|
|
run: ./v -W build-examples
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Test building v tools
|
2021-01-31 11:43:49 +03:00
|
|
|
run: ./v -W build-tools
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Test v binaries
|
|
|
|
run: ./v build-vbinaries
|
2021-09-10 12:43:53 +03:00
|
|
|
- name: Run a VSH script
|
|
|
|
run: ./v run examples/v_script.vsh
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Test v tutorials
|
2021-09-10 12:43:53 +03:00
|
|
|
run: ./v tutorials/building_a_simple_web_blog_with_vweb/code/blog
|
2021-07-20 13:06:59 +03:00
|
|
|
- name: Build cmd/tools/fast
|
2021-08-15 09:27:17 +03:00
|
|
|
run: cd cmd/tools/fast && ../../../v fast.v && ./fast
|
2021-12-29 19:29:08 +03:00
|
|
|
- name: V self compilation with -usecache
|
|
|
|
run: |
|
2021-12-29 22:32:30 +03:00
|
|
|
unset VFLAGS
|
2021-12-29 19:29:08 +03: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
|
2022-08-23 18:17:38 +03:00
|
|
|
- name: Test password input
|
|
|
|
run: |
|
|
|
|
./v examples/password
|
|
|
|
./v examples/password/password_ci.vsh
|
2023-03-30 08:58:52 +03:00
|
|
|
- name: Test readline
|
|
|
|
run: |
|
|
|
|
./v examples/readline/readline_ci.v
|
|
|
|
./v examples/readline/readline.vsh
|
2022-08-23 18:17:38 +03:00
|
|
|
|
2019-12-22 00:09:33 +03:00
|
|
|
|
2021-03-24 20:49:16 +03:00
|
|
|
ubuntu-tcc-boehm-gc:
|
|
|
|
runs-on: ubuntu-20.04
|
2022-05-22 20:19:04 +03:00
|
|
|
if: github.event_name != 'push' || github.event.ref == 'refs/heads/master' || github.event.repository.full_name != 'vlang/v'
|
2021-07-29 18:04:02 +03:00
|
|
|
timeout-minutes: 121
|
2021-03-24 20:49:16 +03:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc tcc -no-retry-compilation
|
|
|
|
steps:
|
2023-02-21 14:40:24 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-24 20:49:16 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 09:22:24 +03:00
|
|
|
sudo apt-get update
|
2021-03-24 20:49:16 +03:00
|
|
|
sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 13:32:29 +03:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-03-24 20:49:16 +03: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 09:22:24 +03:00
|
|
|
sudo apt-get install --quiet -y xfonts-75dpi xfonts-base
|
2021-03-24 20:49:16 +03: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 15:43:00 +03:00
|
|
|
- name: v self compilation with -gc boehm
|
2021-03-26 17:44:45 +03:00
|
|
|
run: |
|
2021-06-15 15:43:00 +03: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 17:44:45 +03:00
|
|
|
mv v4 v
|
2021-03-24 20:49:16 +03:00
|
|
|
- name: v doctor
|
|
|
|
run: |
|
|
|
|
./v doctor
|
2021-06-15 15:43:00 +03:00
|
|
|
- name: Verify `v -gc boehm test` works
|
2021-03-24 20:49:16 +03:00
|
|
|
run: |
|
2021-06-15 15:43:00 +03:00
|
|
|
./v -gc boehm cmd/tools/test_if_v_test_system_works.v
|
2021-03-24 20:49:16 +03:00
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 13:14:08 +03:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-06-15 15:43:00 +03:00
|
|
|
- name: Self tests with `-gc boehm` with V compiler using Boehm-GC itself
|
2022-02-16 22:02:16 +03:00
|
|
|
run: ./v -gc boehm test-self
|
2021-03-25 18:52:33 +03:00
|
|
|
- name: Test leak detector
|
|
|
|
run: |
|
2022-01-07 15:05:24 +03:00
|
|
|
./v -gc boehm_leak -o testcase_leak vlib/v/tests/testcase_leak.vv
|
2021-03-25 18:52:33 +03:00
|
|
|
./testcase_leak 2>leaks.txt
|
2022-04-18 10:50:21 +03:00
|
|
|
grep "Found 1 leaked object" leaks.txt && grep -P ", sz=\s?1000," leaks.txt
|
2021-06-15 15:43:00 +03:00
|
|
|
- name: Test leak detector not being active for `-gc boehm`
|
2021-03-25 18:52:33 +03:00
|
|
|
run: |
|
2022-01-07 15:05:24 +03:00
|
|
|
./v -gc boehm -o testcase_leak vlib/v/tests/testcase_leak.vv
|
2021-03-25 18:52:33 +03: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 15:05:24 +03:00
|
|
|
./v -o testcase_leak vlib/v/tests/testcase_leak.vv
|
2021-03-25 18:52:33 +03:00
|
|
|
./testcase_leak 2>leaks.txt
|
|
|
|
[ "$(stat -c %s leaks.txt)" = "0" ]
|
2021-03-24 20:49:16 +03:00
|
|
|
|
2019-11-29 19:14:26 +03:00
|
|
|
ubuntu:
|
2021-01-01 16:14:03 +03:00
|
|
|
runs-on: ubuntu-20.04
|
2022-05-22 20:19:04 +03:00
|
|
|
if: github.event_name != 'push' || github.event.ref == 'refs/heads/master' || github.event.repository.full_name != 'vlang/v'
|
2021-07-29 18:04:02 +03:00
|
|
|
timeout-minutes: 121
|
2019-09-20 19:05:53 +03:00
|
|
|
steps:
|
2023-02-21 14:40:24 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 09:22:24 +03:00
|
|
|
sudo apt-get update
|
2021-01-23 18:56:38 +03:00
|
|
|
sudo apt-get install --quiet -y postgresql libpq-dev libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 13:32:29 +03:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Build V
|
2021-04-19 15:38:48 +03:00
|
|
|
run: make -j4 && ./v -cc gcc -cg -cstrict -o v cmd/v
|
2021-02-05 10:05:13 +03:00
|
|
|
- name: Valgrind v.c
|
2021-01-23 18:56:38 +03: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 22:02:16 +03:00
|
|
|
# run: ./v test-all
|
2021-01-23 18:56:38 +03: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 08:02:47 +03:00
|
|
|
- name: Build vpm
|
2023-03-15 17:54:16 +03:00
|
|
|
run: git clone --depth 1 https://github.com/vlang/vpm && cd vpm && ../v . || ../v cmd/vpm && cd ..
|
2021-04-22 12:50:38 +03:00
|
|
|
- name: Freestanding
|
|
|
|
run: ./v -freestanding run vlib/os/bare/bare_example_linux.v
|
2021-12-29 19:29:08 +03:00
|
|
|
- name: V self compilation
|
2021-01-23 18:56:38 +03:00
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2021-12-29 19:29:08 +03:00
|
|
|
- name: V self compilation with -usecache
|
|
|
|
run: |
|
2021-12-29 22:32:30 +03: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 18:56:38 +03:00
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 22:32:30 +03:00
|
|
|
echo $VFLAGS
|
2021-01-23 18:56:38 +03:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 13:14:08 +03:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Self tests
|
2022-02-16 22:02:16 +03:00
|
|
|
run: ./v test-self
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Self tests (-prod)
|
2022-02-16 22:02:16 +03:00
|
|
|
run: ./v -o vprod -prod cmd/v && ./vprod test-self
|
2021-04-19 15:38:48 +03:00
|
|
|
- name: Self tests (-cstrict)
|
2022-06-19 13:29:36 +03:00
|
|
|
run: VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 ./v -cc gcc -cstrict test-self
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Build examples
|
|
|
|
run: ./v build-examples
|
2023-07-21 15:39:43 +03:00
|
|
|
- name: Build tetris with -autofree
|
|
|
|
run: ./v -autofree -o tetris examples/tetris/tetris.v
|
|
|
|
- name: Build blog tutorial with -autofree
|
|
|
|
run: ./v -autofree -o blog tutorials/building_a_simple_web_blog_with_vweb/code/blog
|
2021-03-17 15:22:20 +03:00
|
|
|
- name: Build option_test.v with -autofree
|
|
|
|
run: ./v -autofree vlib/v/tests/option_test.v
|
2022-10-01 10:03:59 +03:00
|
|
|
- name: V self compilation with -parallel-cc
|
2022-10-10 03:48:20 +03:00
|
|
|
run: |
|
2022-10-01 10:03:59 +03:00
|
|
|
./v -o v2 -parallel-cc cmd/v
|
2021-01-23 18:56:38 +03: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 17:41:51 +03:00
|
|
|
./v build-module vlib/v/gen/c
|
2021-01-23 18:56:38 +03:00
|
|
|
./v build-module vlib/v/depgraph
|
|
|
|
./v build-module vlib/os/cmdline
|
2021-04-26 16:39:38 +03:00
|
|
|
- name: native machine code generation
|
2021-01-23 18:56:38 +03: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 16:39:38 +03:00
|
|
|
../../vprod -backend native -o 1m 1m.v
|
2021-01-23 18:56:38 +03:00
|
|
|
echo "Running it..."
|
|
|
|
ls
|
2021-04-19 15:38:48 +03:00
|
|
|
|
2021-01-23 18:56:38 +03:00
|
|
|
# ./1m
|
2021-09-06 20:38:51 +03:00
|
|
|
# run: echo "TODO" #cd examples/native && ../../v -native hello_world.v && ./hello_world
|
2021-01-23 18:56:38 +03:00
|
|
|
# - name: Coveralls GitHub Action
|
|
|
|
# uses: coverallsapp/github-action@v1.0.1
|
|
|
|
# with:
|
|
|
|
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
2019-09-22 17:24:15 +03:00
|
|
|
|
2020-12-13 01:37:09 +03:00
|
|
|
ubuntu-clang:
|
2021-01-01 16:14:03 +03:00
|
|
|
runs-on: ubuntu-20.04
|
2022-05-22 20:19:04 +03:00
|
|
|
if: github.event_name != 'push' || github.event.ref == 'refs/heads/master' || github.event.repository.full_name != 'vlang/v'
|
2021-07-29 18:04:02 +03:00
|
|
|
timeout-minutes: 121
|
2020-12-13 01:37:09 +03:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc clang
|
|
|
|
steps:
|
2023-02-21 14:40:24 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-07-14 09:22:24 +03:00
|
|
|
sudo apt-get update
|
2021-01-23 18:56:38 +03:00
|
|
|
sudo apt-get install --quiet -y postgresql libpq-dev libssl-dev sqlite3 libsqlite3-dev valgrind
|
2021-05-08 13:32:29 +03:00
|
|
|
sudo apt-get install --quiet -y libfreetype6-dev libxi-dev libxcursor-dev libgl-dev
|
2021-07-14 09:22:24 +03:00
|
|
|
sudo apt-get install --quiet -y clang
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Build V
|
2021-04-19 15:38:48 +03:00
|
|
|
run: make -j4 && ./v -cc clang -cg -cstrict -o v cmd/v
|
2021-01-23 18:56:38 +03: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-23 01:05:48 +03:00
|
|
|
./v -o v5 cmd/v -cflags -fsanitize=address,pointer-compare,pointer-subtract
|
2021-01-23 18:56:38 +03: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-08 01:10:01 +03:00
|
|
|
ASAN_OPTIONS=detect_leaks=0 UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=1 ./v5 -o v.c cmd/v
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: v self compilation
|
|
|
|
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
|
2021-12-29 19:29:08 +03:00
|
|
|
- name: v self compilation with -usecache
|
|
|
|
run: |
|
2021-12-29 22:32:30 +03:00
|
|
|
unset VFLAGS
|
2021-12-29 19:29:08 +03: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 18:56:38 +03:00
|
|
|
- name: Verify `v test` works
|
|
|
|
run: |
|
2021-12-29 22:32:30 +03:00
|
|
|
echo $VFLAGS
|
2021-01-23 18:56:38 +03:00
|
|
|
./v cmd/tools/test_if_v_test_system_works.v
|
|
|
|
./cmd/tools/test_if_v_test_system_works
|
2022-05-17 13:14:08 +03:00
|
|
|
- name: All code is formatted
|
|
|
|
run: ./v test-cleancode
|
2022-05-19 11:52:31 +03:00
|
|
|
|
2021-01-23 18:56:38 +03:00
|
|
|
- name: Self tests
|
2022-02-16 22:02:16 +03:00
|
|
|
run: ./v test-self
|
2022-05-19 11:52:31 +03:00
|
|
|
- name: Self tests (vprod)
|
|
|
|
run: |
|
|
|
|
./v -o vprod -prod cmd/v
|
|
|
|
./vprod test-self
|
2021-04-19 15:38:48 +03:00
|
|
|
- name: Self tests (-cstrict)
|
2022-06-19 16:08:24 +03:00
|
|
|
run: VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 ./vprod -cstrict test-self
|
2022-05-19 11:52:31 +03:00
|
|
|
|
2021-01-23 18:56:38 +03: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 17:41:51 +03:00
|
|
|
./v build-module vlib/v/gen/c
|
2021-01-23 18:56:38 +03:00
|
|
|
./v build-module vlib/v/depgraph
|
|
|
|
./v build-module vlib/os/cmdline
|
2021-04-26 16:39:38 +03:00
|
|
|
- name: native machine code generation
|
2021-01-23 18:56:38 +03: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 16:39:38 +03:00
|
|
|
../../vprod -backend native -o 1m 1m.v
|
2021-01-23 18:56:38 +03:00
|
|
|
echo "Running it..."
|
|
|
|
ls
|
2020-07-01 01:53:53 +03:00
|
|
|
|
2022-05-12 23:29:37 +03:00
|
|
|
|
2022-05-13 12:24:11 +03:00
|
|
|
# ubuntu-autofree-selfcompile:
|
|
|
|
# runs-on: ubuntu-20.04
|
2022-05-22 20:19:04 +03:00
|
|
|
# if: github.event_name != 'push' || github.event.ref == 'refs/heads/master' || github.event.repository.full_name != 'vlang/v'
|
2022-05-13 12:24:11 +03:00
|
|
|
# timeout-minutes: 121
|
|
|
|
# env:
|
|
|
|
# VFLAGS: -cc gcc
|
|
|
|
# steps:
|
2023-02-21 14:40:24 +03:00
|
|
|
# - uses: actions/checkout@v3
|
2022-05-13 12:24:11 +03:00
|
|
|
# - 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 13:50:19 +03:00
|
|
|
|
2022-05-12 23:29:37 +03:00
|
|
|
|
2022-05-13 12:24:11 +03:00
|
|
|
# ubuntu-musl:
|
|
|
|
# runs-on: ubuntu-20.04
|
2022-05-22 20:19:04 +03:00
|
|
|
# if: github.event_name != 'push' || github.event.ref == 'refs/heads/master' || github.event.repository.full_name != 'vlang/v'
|
2022-05-13 12:24:11 +03:00
|
|
|
# timeout-minutes: 121
|
|
|
|
# env:
|
|
|
|
# VFLAGS: -cc musl-gcc
|
|
|
|
# V_CI_MUSL: 1
|
|
|
|
# steps:
|
2023-02-21 14:40:24 +03:00
|
|
|
# - uses: actions/checkout@v3
|
2022-05-13 12:24:11 +03:00
|
|
|
# - 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
|