make: remove obsolete references to /var/tmp/tcc
parent
c5a7c51dfd
commit
97ed2bf211
|
@ -13,7 +13,7 @@ jobs:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
env:
|
env:
|
||||||
VFLAGS: -cc /var/tmp/tcc/bin/tcc -cflags -bt10
|
VFLAGS: -cc tcc
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Environment info
|
- name: Environment info
|
||||||
|
@ -47,17 +47,17 @@ jobs:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
env:
|
env:
|
||||||
VFLAGS: -cc /var/tmp/tcc/bin/tcc -cflags -bt10
|
VFLAGS: -cc gcc
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Environment info
|
- name: Environment info
|
||||||
run: echo $VFLAGS $GITHUB_SHA $GITHUB_REF
|
run: echo $VFLAGS $GITHUB_SHA $GITHUB_REF
|
||||||
- name: Build local v
|
- name: Build local v
|
||||||
run: (make -j4 && ./v -cg -o v cmd/v)
|
run: (make -j4)
|
||||||
- name: Clone & Build vmaster/v
|
- name: Clone & Build vmaster/v
|
||||||
run: |
|
run: |
|
||||||
git clone --depth=1 https://github.com/vlang/v vmaster/
|
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
|
- name: V versions
|
||||||
run: ./v version && ./vmaster/v version
|
run: ./v version && ./vmaster/v version
|
||||||
- name: Build the repeat tool
|
- name: Build the repeat tool
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -105,10 +105,6 @@ endif
|
||||||
|
|
||||||
fresh_tcc:
|
fresh_tcc:
|
||||||
ifndef ANDROID
|
ifndef ANDROID
|
||||||
ifdef LINUX
|
|
||||||
rm -rf /var/tmp/tcc
|
|
||||||
git clone https://github.com/vlang/tccbin /var/tmp/tcc
|
|
||||||
endif
|
|
||||||
rm -rf $(TMPTCC)
|
rm -rf $(TMPTCC)
|
||||||
$(GITFASTCLONE) --branch $(TCCBRANCH) $(TCCREPO) $(TMPTCC)
|
$(GITFASTCLONE) --branch $(TCCBRANCH) $(TCCREPO) $(TMPTCC)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue