Skip to content

Commit

Permalink
REALMC-6371: add missing otto functionality (dop251#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsedgwick committed Dec 2, 2020
1 parent 7545ac6 commit c84a696
Show file tree
Hide file tree
Showing 44 changed files with 3,621 additions and 153 deletions.
38 changes: 38 additions & 0 deletions .evg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
functions:
"fetch_go":
- command: shell.exec
params:
script: |
set -e
curl ${go_url} -o go.tar.gz
tar xvf ./go.tar.gz
"setup_project":
- command: git.get_project
params:
directory: goja

tasks:
- name: test
commands:
- func: "fetch_go"
- func: "setup_project"
- command: shell.exec
params:
script: |
set -e
export ROOT_DIR=`pwd`
export GOROOT=$ROOT_DIR/go
export PATH=$ROOT_DIR/go/bin:$PATH
cd goja
go test -v ./...
buildvariants:
- name: linux-64
display_name: Linux-64
run_on:
- rhel70
expansions:
go_url: "https://dl.google.com/go/go1.14.10.linux-amd64.tar.gz"
tasks:
- name: test
Loading

0 comments on commit c84a696

Please sign in to comment.