mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
Compare commits
14 commits
7c67be39b0
...
75f5d65fc1
Author | SHA1 | Date | |
---|---|---|---|
|
75f5d65fc1 | ||
|
9c485595d9 | ||
|
c99c3ea6ec | ||
|
70c315e29a | ||
|
a7a79dbb30 | ||
|
e57ef95e02 | ||
|
a024c9193d | ||
|
412e1ec7ee | ||
|
228880ba9b | ||
|
fb95a4dbc0 | ||
|
5f39d11f87 | ||
|
0d1906e1b6 | ||
|
aa0a7ac35f | ||
|
7744eea459 |
23 changed files with 130 additions and 3 deletions
|
@ -5,7 +5,7 @@ RUN for i in $(seq 1001 1500); do \
|
|||
useradd -M runner$i -g $i -u $i ; \
|
||||
done
|
||||
RUN apt-get update && \
|
||||
apt-get install -y libxml2 gnupg tar coreutils util-linux libc6-dev binutils build-essential locales libpcre3-dev libevent-dev libgmp3-dev libncurses6 && \
|
||||
apt-get install -y libxml2 gnupg tar coreutils util-linux libc6-dev binutils build-essential locales libpcre3-dev libevent-dev libgmp3-dev libncurses6 libncurses5 libedit-dev && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
|
||||
|
|
24
packages/emacs/27.1.0/build.sh
vendored
Executable file
24
packages/emacs/27.1.0/build.sh
vendored
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
|
||||
export PATH=$PWD/bin:$PATH
|
||||
|
||||
PREFIX=$(realpath $(dirname $0))
|
||||
|
||||
mkdir -p build
|
||||
|
||||
cd build
|
||||
|
||||
# Emacs version 27.1 supports Docker builds
|
||||
# Otherwise, older versions will work too, but you will have to disable `/proc/sys/kernel/randomize_va_space` which is less secure
|
||||
curl -L "http://ftpmirror.gnu.org/emacs/emacs-27.1.tar.gz" -o emacs.tar.gz
|
||||
tar xzf emacs.tar.gz --strip-components=1
|
||||
rm emacs.tar.gz
|
||||
|
||||
# Building without all that X11 stuff
|
||||
./configure --prefix="$PREFIX" --with-x=no --with-x-toolkit=no --with-xpm=no --with-jpeg=no --with-png=no --with-gif=no --with-tiff=no --with-gnutls=no
|
||||
make -j$(nproc)
|
||||
make install -j$(nproc)
|
||||
|
||||
cd ..
|
||||
|
||||
rm -rf build
|
4
packages/emacs/27.1.0/environment
vendored
Normal file
4
packages/emacs/27.1.0/environment
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH=$PWD/bin:$PATH
|
6
packages/emacs/27.1.0/metadata.json
vendored
Normal file
6
packages/emacs/27.1.0/metadata.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"language": "emacs",
|
||||
"version": "27.1.0",
|
||||
"author": "Dan Vargas <danvargas46@gmail.com>",
|
||||
"aliases": ["emacs", "el", "elisp"]
|
||||
}
|
4
packages/emacs/27.1.0/run
vendored
Normal file
4
packages/emacs/27.1.0/run
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Put instructions to run the runtime
|
||||
emacs -Q --script "$@"
|
1
packages/emacs/27.1.0/test.el
vendored
Normal file
1
packages/emacs/27.1.0/test.el
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
(princ "OK")
|
15
packages/lolcode/0.11.2/build.sh
vendored
Executable file
15
packages/lolcode/0.11.2/build.sh
vendored
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
PREFIX=$(realpath $(dirname $0))
|
||||
|
||||
# Cloning lolcode source
|
||||
git clone https://github.com/justinmeza/lci.git lolcode
|
||||
cd lolcode
|
||||
|
||||
# Building and installing lolcode
|
||||
cmake -DCMAKE_INSTALL_PREFIX:STRING="$PREFIX" .
|
||||
make -j$(nproc)
|
||||
make install -j$(nproc)
|
||||
|
||||
# Cleaning up
|
||||
cd ../ && rm -rf lolcode
|
4
packages/lolcode/0.11.2/environment
vendored
Normal file
4
packages/lolcode/0.11.2/environment
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH=$PWD/bin:$PATH
|
6
packages/lolcode/0.11.2/metadata.json
vendored
Normal file
6
packages/lolcode/0.11.2/metadata.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"language": "lolcode",
|
||||
"version": "0.11.2",
|
||||
"author": "Shivansh-007 <Shivansh-007@users.noreply.github.com>",
|
||||
"aliases": ["lol", "lci"]
|
||||
}
|
4
packages/lolcode/0.11.2/run
vendored
Normal file
4
packages/lolcode/0.11.2/run
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put instructions to run the runtime
|
||||
lci "$@"
|
4
packages/lolcode/0.11.2/test.lol
vendored
Normal file
4
packages/lolcode/0.11.2/test.lol
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
HAI 1.2
|
||||
CAN HAS STDIO?
|
||||
VISIBLE "OK"
|
||||
KTHXBYE
|
6
packages/swift/5.3.3/build.sh
vendored
Executable file
6
packages/swift/5.3.3/build.sh
vendored
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Binary install
|
||||
curl -L "https://swift.org/builds/swift-5.3.3-release/ubuntu1804/swift-5.3.3-RELEASE/swift-5.3.3-RELEASE-ubuntu18.04.tar.gz" -o swift.tar.gz
|
||||
tar xzf swift.tar.gz --strip-components=2
|
||||
rm swift.tar.gz
|
4
packages/swift/5.3.3/environment
vendored
Normal file
4
packages/swift/5.3.3/environment
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH=$PWD/bin:$PATH
|
6
packages/swift/5.3.3/metadata.json
vendored
Normal file
6
packages/swift/5.3.3/metadata.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"language": "swift",
|
||||
"version": "5.3.3",
|
||||
"aliases": ["swift"],
|
||||
"author": "Dan Vargas <danvargas46@gmail.com>"
|
||||
}
|
4
packages/swift/5.3.3/run
vendored
Normal file
4
packages/swift/5.3.3/run
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Setting clang cache to current dir to avoid permission error on /tmp
|
||||
swift -module-cache-path . "$@"
|
1
packages/swift/5.3.3/test.swift
vendored
Normal file
1
packages/swift/5.3.3/test.swift
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
print("OK")
|
10
packages/zig/0.7.1/build.sh
vendored
Executable file
10
packages/zig/0.7.1/build.sh
vendored
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
mkdir -p bin
|
||||
cd bin/
|
||||
|
||||
curl -L "https://ziglang.org/download/0.7.1/zig-linux-x86_64-0.7.1.tar.xz" -o zig.tar.xz
|
||||
tar xf zig.tar.xz --strip-components=1
|
||||
rm zig.tar.xz
|
||||
|
||||
cd ../
|
4
packages/zig/0.7.1/compile
vendored
Normal file
4
packages/zig/0.7.1/compile
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# optimizing for small programs
|
||||
zig build-exe -O ReleaseSmall --color off --cache-dir . --global-cache-dir . --name out "$@"
|
4
packages/zig/0.7.1/environment
vendored
Normal file
4
packages/zig/0.7.1/environment
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# compiler path
|
||||
export PATH=$PWD/bin:$PATH
|
6
packages/zig/0.7.1/metadata.json
vendored
Normal file
6
packages/zig/0.7.1/metadata.json
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"language": "zig",
|
||||
"version": "0.7.1",
|
||||
"aliases": ["zig"],
|
||||
"author": "Dan Vargas <danvargas46@gmail.com>"
|
||||
}
|
4
packages/zig/0.7.1/run
vendored
Normal file
4
packages/zig/0.7.1/run
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
shift # Filename is only used in compile step, so we can take it out here
|
||||
./out "$@"
|
6
packages/zig/0.7.1/test.zig
vendored
Normal file
6
packages/zig/0.7.1/test.zig
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub fn main() !void {
|
||||
const stdout = std.io.getStdOut().writer();
|
||||
try stdout.print("OK\n", .{});
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.mkShell {
|
||||
# nativeBuildInputs is usually what you want -- tools you need to run
|
||||
nativeBuildInputs = [ pkgs.nodejs-15_x pkgs.yarn pkgs.jq ];
|
||||
nativeBuildInputs = with pkgs; [ nodejs-15_x yarn jq ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue