ci: disable 2 jobs for now

pull/3285/head
Alexander Medvednikov 2019-12-31 16:06:01 +01:00
parent da5fb5dcbd
commit 67912c692b
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ jobs:
- 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: ./v test-fmt
run: echo "TODO" #./v test-fmt
ubuntu-tcc:
runs-on: ubuntu-18.04
@ -120,7 +120,7 @@ jobs:
- name: Freestanding
run: ./v -freestanding -o bare vlib/os/bare/bare_example_linux.v
- name: x64 machine code generation
run: cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world
run: echo "TODO" #cd examples/x64 && ../../v -x64 hello_world.v && ./hello_world
ubuntu-prebuilt: