ci: change periodic.yml to use cc in the ubuntu job.
parent
99f311cc5f
commit
c6573f9005
|
@ -5,22 +5,16 @@ on:
|
||||||
- cron: '31 1,12 * * *'
|
- cron: '31 1,12 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
network-tests-ubuntu-tcc:
|
network-tests-ubuntu:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
|
||||||
VFLAGS: -cc tcc
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev
|
run: sudo apt-get install --quiet -y libssl-dev sqlite3 libsqlite3-dev
|
||||||
- name: Build v
|
- name: Build v
|
||||||
run: echo $VFLAGS && make -j4 && ./v -cg -o v cmd/v
|
run: make -j4 && ./v -cg -o v cmd/v
|
||||||
- name: Symlink V
|
- name: Symlink V
|
||||||
run: sudo ./v symlink
|
run: sudo ./v symlink
|
||||||
- name: Symlink tcc where v can find it
|
|
||||||
run: |
|
|
||||||
sudo ln -s /var/tmp/tcc/bin/tcc /usr/local/bin/tcc
|
|
||||||
tcc -version
|
|
||||||
- name: Run network tests
|
- name: Run network tests
|
||||||
run: ./v -d network test-fixed
|
run: ./v -d network test-fixed
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue