From 2c3e50e327e350ced479c3bc68c857f941994dfc Mon Sep 17 00:00:00 2001 From: Kreyren Date: Fri, 7 Feb 2020 18:22:07 +0000 Subject: [PATCH] dshas --- .github/workflows/cona-isa.yml | 9 --------- Makefile | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/cona-isa.yml b/.github/workflows/cona-isa.yml index 99df970..54d7fa8 100644 --- a/.github/workflows/cona-isa.yml +++ b/.github/workflows/cona-isa.yml @@ -119,11 +119,6 @@ jobs: [ ! -f "$HOME/.cache/vlang-0.1.24.zip" ] && wget https://github.com/vlang/v/releases/download/0.1.24/v_linux.zip -O "$HOME/.cache/vlang-0.1.24.zip" # Extract [ ! -x "/opt/vlang/v" ] && unzip "$HOME/.cache/vlang-0.1.24.zip" -d /opt/vlang - # Symlink - [ ! -h "/usr/bin/v" ] && ln -sf /opt/vlang/v /usr/bin/v - echo hello - ls -la /usr/bin/v - echo hmm - name: make build-vlang run: make build-vlang check-vlang: @@ -138,8 +133,6 @@ jobs: [ ! -f "$HOME/.cache/vlang-0.1.24.zip" ] && wget https://github.com/vlang/v/releases/download/0.1.24/v_linux.zip -O "$HOME/.cache/vlang-0.1.24.zip" # Extract [ ! -x "/opt/vlang/v" ] && unzip "$HOME/.cache/vlang-0.1.24.zip" -d /opt/vlang - # Symlink - [ ! -h "/usr/bin/v" ] && ln -sf /usr/bin/v /opt/vlang/v - name: make check-vlang run: make check-vlang bench-vlang: @@ -154,8 +147,6 @@ jobs: [ ! -f "$HOME/.cache/vlang-0.1.24.zip" ] && wget https://github.com/vlang/v/releases/download/0.1.24/v_linux.zip -O "$HOME/.cache/vlang-0.1.24.zip" # Extract [ ! -x /opt/vlang/v ] && unzip "$HOME/.cache/vlang-0.1.24.zip" -d /opt/vlang - # Symlink - [ ! -h "/usr/bin/v" ] && ln -sf /usr/bin/v /opt/vlang/v - name: make bench-vlang run: make bench-vlang diff --git a/Makefile b/Makefile index d39cdb6..b24e7c2 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ build-python: build-vlang: @ [ ! -d build ] && mkdir build @ [ ! -d build/build-vlang ] && mkdir build/build-vlang - @ v -o build/build-vlang/zernit-vlang src/bin/main.v + @ /opt/vlang/v -o build/build-vlang/zernit-vlang src/bin/main.v build-golang: @ [ ! -d build ] && mkdir build