From 97ed2bf211800cd812cc218ac30599e8a8b0af07 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 3 Dec 2020 09:17:31 +0200 Subject: [PATCH] make: remove obsolete references to /var/tmp/tcc --- .github/workflows/ci.yml | 8 ++++---- Makefile | 4 ---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2af79c4f3d..6fa5b2d1d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/Makefile b/Makefile index bdca9cdf25..9aa7e57018 100644 --- a/Makefile +++ b/Makefile @@ -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