2021-04-13 12:24:01 +02:00
|
|
|
name: Sanitized CI
|
|
|
|
|
2021-07-30 10:37:07 +02:00
|
|
|
## Running these jobs is slow (over ~1 hour, sometimes even 2)
|
|
|
|
## so we run them only when there is a chance that the generated
|
|
|
|
## C code could have changed, or for some critical vlib modules,
|
|
|
|
## like `builtin`, `os`, `sync`, where they have demonstrated
|
|
|
|
## their usefulness by catching actual very hard to find bugs.
|
|
|
|
## The cost of this selective running is delayed feedback when
|
|
|
|
## there are bugs in other V modules.
|
|
|
|
## The positive is *much faster CI runs* for most V contributors,
|
|
|
|
## that make PRs that are not concerning V itself, or the critical
|
|
|
|
## V modules.
|
|
|
|
|
2021-04-13 12:24:01 +02:00
|
|
|
on:
|
|
|
|
push:
|
2021-07-30 10:10:37 +02:00
|
|
|
paths:
|
|
|
|
- '!**'
|
2021-08-09 16:05:15 +02:00
|
|
|
- 'cmd/tools/vtest*'
|
2021-07-30 10:37:07 +02:00
|
|
|
- 'vlib/builtin/**.v'
|
|
|
|
- 'vlib/strconv/**.v'
|
|
|
|
- 'vlib/strings/**.v'
|
|
|
|
- 'vlib/os/**.v'
|
|
|
|
- 'vlib/sync/**.v'
|
|
|
|
- 'vlib/v/tests/**.v'
|
|
|
|
- 'vlib/v/ast/**.v'
|
|
|
|
- 'vlib/v/scanner/**.v'
|
|
|
|
- 'vlib/v/parser/**.v'
|
|
|
|
- 'vlib/v/checker/**.v'
|
|
|
|
- 'vlib/v/gen/c/**.v'
|
|
|
|
- 'vlib/v/cflag/**.v'
|
|
|
|
- 'vlib/v/live/**.v'
|
|
|
|
- 'vlib/v/util/**.v'
|
|
|
|
- 'vlib/v/preludes/**.v'
|
|
|
|
- 'vlib/v/embed_file/**.v'
|
2021-04-13 12:24:01 +02:00
|
|
|
pull_request:
|
2021-07-30 10:10:37 +02:00
|
|
|
paths:
|
|
|
|
- '!**'
|
2021-08-09 16:05:15 +02:00
|
|
|
- 'cmd/tools/vtest*'
|
2021-07-30 10:37:07 +02:00
|
|
|
- 'vlib/builtin/**.v'
|
|
|
|
- 'vlib/strconv/**.v'
|
|
|
|
- 'vlib/strings/**.v'
|
|
|
|
- 'vlib/os/**.v'
|
|
|
|
- 'vlib/sync/**.v'
|
|
|
|
- 'vlib/v/tests/**.v'
|
|
|
|
- 'vlib/v/ast/**.v'
|
|
|
|
- 'vlib/v/scanner/**.v'
|
|
|
|
- 'vlib/v/parser/**.v'
|
|
|
|
- 'vlib/v/checker/**.v'
|
|
|
|
- 'vlib/v/gen/c/**.v'
|
|
|
|
- 'vlib/v/cflag/**.v'
|
|
|
|
- 'vlib/v/live/**.v'
|
|
|
|
- 'vlib/v/util/**.v'
|
|
|
|
- 'vlib/v/preludes/**.v'
|
|
|
|
- 'vlib/v/embed_file/**.v'
|
2021-04-13 12:24:01 +02:00
|
|
|
|
2021-12-21 17:55:02 +01:00
|
|
|
concurrency:
|
2021-12-21 18:18:34 +01:00
|
|
|
group: build-${{ 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:
|
2021-04-13 12:24:01 +02:00
|
|
|
tests-sanitize-undefined-clang:
|
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 15:29:53 +02:00
|
|
|
timeout-minutes: 180
|
2021-04-13 12:24:01 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc clang
|
2021-04-14 17:43:52 +02:00
|
|
|
VJOBS: 1
|
|
|
|
VTEST_SHOW_START: 1
|
2021-04-13 12:24:01 +02:00
|
|
|
steps:
|
|
|
|
- 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-04-13 12:24:01 +02: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-04-13 12:24:01 +02:00
|
|
|
sudo apt-get install clang
|
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cg -cstrict -o v cmd/v
|
2021-04-13 12:24:01 +02:00
|
|
|
- name: Self tests (-fsanitize=undefined)
|
|
|
|
run: ./v -cflags "-fsanitize=undefined" -o v2 cmd/v && ./v2 -cflags -fsanitize=undefined test-self
|
|
|
|
- name: Build examples (V compiled with -fsanitize=undefined)
|
|
|
|
run: ./v2 build-examples
|
|
|
|
|
|
|
|
tests-sanitize-undefined-gcc:
|
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 15:29:53 +02:00
|
|
|
timeout-minutes: 180
|
2021-04-13 12:24:01 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc gcc
|
2021-04-14 17:43:52 +02:00
|
|
|
VJOBS: 1
|
|
|
|
VTEST_SHOW_START: 1
|
2021-04-13 12:24:01 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-05-08 12:02:36 +02:00
|
|
|
sudo apt update
|
2021-04-13 12:24:01 +02: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-04-13 12:24:01 +02:00
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cg -cstrict -o v cmd/v
|
2021-04-13 12:24:01 +02:00
|
|
|
- name: Self tests (-fsanitize=undefined)
|
|
|
|
run: ./v -cflags "-fsanitize=undefined" -o v2 cmd/v && ./v2 -cflags -fsanitize=undefined test-self
|
|
|
|
- name: Build examples (V compiled with -fsanitize=undefined)
|
|
|
|
run: ./v2 build-examples
|
|
|
|
|
|
|
|
tests-sanitize-address-clang:
|
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 15:29:53 +02:00
|
|
|
timeout-minutes: 180
|
2021-04-13 12:24:01 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc clang
|
2021-04-14 17:43:52 +02:00
|
|
|
VJOBS: 1
|
|
|
|
VTEST_SHOW_START: 1
|
2021-04-13 12:24:01 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-05-08 12:02:36 +02:00
|
|
|
sudo apt update
|
2021-04-13 12:24:01 +02: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-04-13 12:24:01 +02:00
|
|
|
sudo apt-get install clang
|
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cg -cstrict -o v cmd/v
|
2021-04-13 12:24:01 +02:00
|
|
|
- name: Self tests (-fsanitize=address)
|
|
|
|
run: ASAN_OPTIONS=detect_leaks=0 ./v -cflags "-fsanitize=address,pointer-compare,pointer-subtract" test-self
|
|
|
|
- name: Self tests (V compiled with -fsanitize=address)
|
|
|
|
run:
|
|
|
|
./v -cflags -fsanitize=address -o v cmd/v &&
|
|
|
|
ASAN_OPTIONS=detect_leaks=0 ./v -cc tcc test-self -asan-compiler
|
|
|
|
- name: Build examples (V compiled with -fsanitize=address)
|
|
|
|
run: ASAN_OPTIONS=detect_leaks=0 ./v build-examples
|
|
|
|
|
|
|
|
tests-sanitize-address-msvc:
|
|
|
|
runs-on: windows-2019
|
2021-07-29 15:29:53 +02:00
|
|
|
timeout-minutes: 180
|
2021-04-13 12:24:01 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc msvc
|
2021-04-14 17:43:52 +02:00
|
|
|
VJOBS: 1
|
|
|
|
VTEST_SHOW_START: 1
|
2021-04-13 12:24:01 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
echo %VFLAGS%
|
|
|
|
echo $VFLAGS
|
|
|
|
.\make.bat -msvc
|
2021-09-18 11:08:09 +02:00
|
|
|
.\v.exe self
|
2021-09-18 14:11:39 +02:00
|
|
|
## - name: Install dependencies
|
|
|
|
## run: |
|
|
|
|
## .\v.exe setup-freetype
|
|
|
|
## .\.github\workflows\windows-install-sqlite.bat
|
|
|
|
## - name: Self tests (TODO: /fsanitize=address)
|
|
|
|
## run: |
|
|
|
|
## .\v.exe -cflags "/fsanitize=address" test-self
|
2021-04-13 12:24:01 +02:00
|
|
|
|
|
|
|
tests-sanitize-address-gcc:
|
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 15:29:53 +02:00
|
|
|
timeout-minutes: 180
|
2021-04-13 12:24:01 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc gcc
|
2021-04-14 17:43:52 +02:00
|
|
|
VJOBS: 1
|
|
|
|
VTEST_SHOW_START: 1
|
2021-04-13 12:24:01 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-05-08 12:02:36 +02:00
|
|
|
sudo apt update
|
2021-04-13 12:24:01 +02: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-04-13 12:24:01 +02:00
|
|
|
sudo apt-get install clang
|
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cg -cstrict -o v cmd/v
|
2021-04-13 12:24:01 +02:00
|
|
|
- name: Self tests (-fsanitize=address)
|
|
|
|
run: ASAN_OPTIONS=detect_leaks=0 ./v -cflags -fsanitize=address test-self
|
|
|
|
- name: Self tests (V compiled with -fsanitize=address)
|
|
|
|
run:
|
|
|
|
./v -cflags -fsanitize=address,pointer-compare,pointer-subtract -o v cmd/v &&
|
|
|
|
ASAN_OPTIONS=detect_leaks=0 ./v -cc tcc test-self -asan-compiler
|
|
|
|
- name: Build examples (V compiled with -fsanitize=address)
|
|
|
|
run: ASAN_OPTIONS=detect_leaks=0 ./v build-examples
|
|
|
|
|
|
|
|
tests-sanitize-memory-clang:
|
|
|
|
runs-on: ubuntu-20.04
|
2021-07-29 15:29:53 +02:00
|
|
|
timeout-minutes: 180
|
2021-04-13 12:24:01 +02:00
|
|
|
env:
|
|
|
|
VFLAGS: -cc clang
|
2021-04-14 17:43:52 +02:00
|
|
|
VJOBS: 1
|
|
|
|
VTEST_SHOW_START: 1
|
2021-04-13 12:24:01 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 12.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-05-08 12:02:36 +02:00
|
|
|
sudo apt update
|
2021-04-13 12:24:01 +02: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-04-13 12:24:01 +02:00
|
|
|
sudo apt-get install clang
|
|
|
|
- name: Build V
|
2021-04-19 14:38:48 +02:00
|
|
|
run: make -j4 && ./v -cc clang -cg -cstrict -o v cmd/v
|
2021-04-13 12:24:01 +02:00
|
|
|
- name: Self tests (-fsanitize=memory)
|
|
|
|
run: ./v -cflags -fsanitize=memory test-self
|
|
|
|
- name: Self tests (V compiled with -fsanitize=memory)
|
|
|
|
run:
|
|
|
|
./v -cflags -fsanitize=memory -o v cmd/v && ./v -cc tcc test-self -msan-compiler
|
|
|
|
- name: Build examples (V compiled with -fsanitize=memory)
|
|
|
|
run: ./v build-examples
|