Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
Update .gitpod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfliegner authored May 14, 2024
1 parent 161619b commit 10a3149
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@

image:
file: .gitpod.Dockerfile
tasks:
- init: echo 'PATH_add ~/julia-1.8.2/bin' > /workspace/.envrc \
&& echo 'export SEARCHLIGHT_USERNAME="gitpod"' >> /workspace/.envrc \
&& direnv allow /workspace
- command: cd . && julia -e 'include("init.jl")'
- init: >
cd ~ && curl -L https://storage.googleapis.com/julialang2/bin/linux/x64/$JULIA_MINOR_VERSION/julia-$JULIA_BUGFIX_VERSION-linux-x86_64.tar.gz
| tar -xzf -
&& echo "PATH_add ~/julia-$JULIA_BUGFIX_VERSION/bin" > /workspace/.envrc
&& echo 'export SEARCHLIGHT_USERNAME="gitpod"' >> /workspace/.envrc
&& direnv allow /workspace
- command: julia -e 'include("init.jl")'
- command: python3 -m http.server 8080 -d docs/build
- command: julia -e 'using Pkg; Pkg.activate("."); Pkg.instantiate();include("testCreateContract.jl"); include("testPendingMutations.jl")'

0 comments on commit 10a3149

Please sign in to comment.