mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
Compare commits
6 commits
a1aba52c3a
...
4e26a48a6e
Author | SHA1 | Date | |
---|---|---|---|
|
4e26a48a6e | ||
|
172cbd92a1 | ||
|
4dade61599 | ||
|
eac95d8c6b | ||
|
2259606409 | ||
|
cbb71341e3 |
10 changed files with 41 additions and 0 deletions
4
packages/go/1.16.2/build.sh
vendored
Executable file
4
packages/go/1.16.2/build.sh
vendored
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
curl -LO https://golang.org/dl/go1.16.2.linux-amd64.tar.gz
|
||||||
|
tar -xzf go1.16.2.linux-amd64.tar.gz
|
||||||
|
rm go1.16.2.linux-amd64.tar.gz
|
2
packages/go/1.16.2/environment
vendored
Normal file
2
packages/go/1.16.2/environment
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
export PATH=$PWD/go/bin:$PATH
|
||||||
|
export GOPATH=$PWD/gopath
|
6
packages/go/1.16.2/metadata.json
vendored
Normal file
6
packages/go/1.16.2/metadata.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"language": "go",
|
||||||
|
"version": "1.16.2",
|
||||||
|
"author": "Victor Frazao <luiz_victor_frazao@hotmail.com>",
|
||||||
|
"aliases": ["go", "golang"]
|
||||||
|
}
|
3
packages/go/1.16.2/run
vendored
Normal file
3
packages/go/1.16.2/run
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
GOCACHE=$PWD go run "$@"
|
7
packages/go/1.16.2/test.go
vendored
Normal file
7
packages/go/1.16.2/test.go
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("OK")
|
||||||
|
}
|
5
packages/julia/1.5.4/build.sh
vendored
Executable file
5
packages/julia/1.5.4/build.sh
vendored
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
curl -OL https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.4-linux-x86_64.tar.gz
|
||||||
|
tar zxvf julia-1.5.4-linux-x86_64.tar.gz
|
||||||
|
rm julia-1.5.4-linux-x86_64.tar.gz
|
3
packages/julia/1.5.4/environment
vendored
Normal file
3
packages/julia/1.5.4/environment
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
export PATH=$PWD/julia-1.5.4/bin:$PATH
|
6
packages/julia/1.5.4/metadata.json
vendored
Normal file
6
packages/julia/1.5.4/metadata.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"language": "julia",
|
||||||
|
"version": "1.5.4",
|
||||||
|
"aliases": ["jl"],
|
||||||
|
"author": "Victor Frazao <luiz_victor_frazao@hotmail.com>"
|
||||||
|
}
|
4
packages/julia/1.5.4/run
vendored
Executable file
4
packages/julia/1.5.4/run
vendored
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Put instructions to run the runtime
|
||||||
|
julia --startup-file=no --history-file=no "$@"
|
1
packages/julia/1.5.4/test.jl
vendored
Normal file
1
packages/julia/1.5.4/test.jl
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
println("OK")
|
Loading…
Add table
Add a link
Reference in a new issue