1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

make: remove obsolete references to /var/tmp/tcc

This commit is contained in:
Delyan Angelov 2020-12-03 09:17:31 +02:00
parent c5a7c51dfd
commit 97ed2bf211
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
2 changed files with 4 additions and 8 deletions

View File

@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-18.04
timeout-minutes: 30
env:
VFLAGS: -cc /var/tmp/tcc/bin/tcc -cflags -bt10
VFLAGS: -cc tcc
steps:
- uses: actions/checkout@v2
- name: Environment info
@ -47,17 +47,17 @@ jobs:
runs-on: ubuntu-18.04
timeout-minutes: 30
env:
VFLAGS: -cc /var/tmp/tcc/bin/tcc -cflags -bt10
VFLAGS: -cc gcc
steps:
- uses: actions/checkout@v2
- name: Environment info
run: echo $VFLAGS $GITHUB_SHA $GITHUB_REF
- name: Build local v
run: (make -j4 && ./v -cg -o v cmd/v)
run: (make -j4)
- name: Clone & Build vmaster/v
run: |
git clone --depth=1 https://github.com/vlang/v vmaster/
(cd vmaster; make -j4 && ./v -cg -o v cmd/v)
(cd vmaster; make -j4)
- name: V versions
run: ./v version && ./vmaster/v version
- name: Build the repeat tool

View File

@ -105,10 +105,6 @@ endif
fresh_tcc:
ifndef ANDROID
ifdef LINUX
rm -rf /var/tmp/tcc
git clone https://github.com/vlang/tccbin /var/tmp/tcc
endif
rm -rf $(TMPTCC)
$(GITFASTCLONE) --branch $(TCCBRANCH) $(TCCREPO) $(TMPTCC)
endif