2021-08-15 08:18:59 +03:00
|
|
|
freebsd_instance:
|
|
|
|
image_family: freebsd-13-0
|
|
|
|
|
2021-12-16 18:44:21 +03:00
|
|
|
freebsd_task:
|
|
|
|
name: Code CI / freebsd
|
2021-08-15 12:22:36 +03:00
|
|
|
install_script: pkg install -y git
|
2021-08-15 09:27:17 +03:00
|
|
|
script: |
|
|
|
|
echo 'Building V'
|
|
|
|
git clone https://github.com/vlang/v
|
|
|
|
cd v
|
|
|
|
make
|
2021-08-15 12:03:09 +03:00
|
|
|
##.github/workflows/freebsd_build_tcc.sh
|
2021-08-15 09:59:19 +03:00
|
|
|
##tcc -v -v
|
2021-08-15 09:27:17 +03:00
|
|
|
echo 'Build cmd/tools/fast'
|
2021-08-18 13:10:12 +03:00
|
|
|
cd cmd/tools/fast && ../../../v fast.v && ./fast -clang
|
2022-09-01 21:56:43 +03:00
|
|
|
echo 'Run test-self'
|
|
|
|
cd /tmp/cirrus-ci-build/v
|
|
|
|
VTEST_JUST_ESSENTIAL=1 ./v test-self
|