Compare commits
No commits in common. "eb6d00c9d74a07790c0d49d32d992200be7a6653" and "6a8dc482335d621b9730a7af2abb6ec2b5f3d0ee" have entirely different histories.
eb6d00c9d7
...
6a8dc48233
|
@ -3,6 +3,7 @@ const router = express.Router();
|
||||||
|
|
||||||
const events = require('events');
|
const events = require('events');
|
||||||
|
|
||||||
|
const config = require('../config');
|
||||||
const runtime = require('../runtime');
|
const runtime = require('../runtime');
|
||||||
const { Job } = require('../job');
|
const { Job } = require('../job');
|
||||||
const package = require('../package');
|
const package = require('../package');
|
||||||
|
@ -12,7 +13,7 @@ const SIGNALS = ["SIGABRT","SIGALRM","SIGBUS","SIGCHLD","SIGCLD","SIGCONT","SIGE
|
||||||
// ref: https://man7.org/linux/man-pages/man7/signal.7.html
|
// ref: https://man7.org/linux/man-pages/man7/signal.7.html
|
||||||
|
|
||||||
function get_job(body){
|
function get_job(body){
|
||||||
let {
|
const {
|
||||||
language,
|
language,
|
||||||
version,
|
version,
|
||||||
args,
|
args,
|
||||||
|
@ -30,16 +31,19 @@ function get_job(body){
|
||||||
message: 'language is required as a string',
|
message: 'language is required as a string',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!version || typeof version !== 'string') {
|
if (!version || typeof version !== 'string') {
|
||||||
return reject({
|
return reject({
|
||||||
message: 'version is required as a string',
|
message: 'version is required as a string',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!files || !Array.isArray(files)) {
|
if (!files || !Array.isArray(files)) {
|
||||||
return reject({
|
return reject({
|
||||||
message: 'files is required as an array',
|
message: 'files is required as an array',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const [i, file] of files.entries()) {
|
for (const [i, file] of files.entries()) {
|
||||||
if (typeof file.content !== 'string') {
|
if (typeof file.content !== 'string') {
|
||||||
return reject({
|
return reject({
|
||||||
|
@ -48,64 +52,73 @@ function get_job(body){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (compile_memory_limit) {
|
||||||
|
if (typeof compile_memory_limit !== 'number') {
|
||||||
|
return reject({
|
||||||
|
message: 'if specified, compile_memory_limit must be a number',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
config.compile_memory_limit >= 0 &&
|
||||||
|
(compile_memory_limit > config.compile_memory_limit ||
|
||||||
|
compile_memory_limit < 0)
|
||||||
|
) {
|
||||||
|
return reject({
|
||||||
|
message:
|
||||||
|
'compile_memory_limit cannot exceed the configured limit of ' +
|
||||||
|
config.compile_memory_limit,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (run_memory_limit) {
|
||||||
|
if (typeof run_memory_limit !== 'number') {
|
||||||
|
return reject({
|
||||||
|
message: 'if specified, run_memory_limit must be a number',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
config.run_memory_limit >= 0 &&
|
||||||
|
(run_memory_limit > config.run_memory_limit || run_memory_limit < 0)
|
||||||
|
) {
|
||||||
|
return reject({
|
||||||
|
message:
|
||||||
|
'run_memory_limit cannot exceed the configured limit of ' +
|
||||||
|
config.run_memory_limit,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const rt = runtime.get_latest_runtime_matching_language_version(
|
const rt = runtime.get_latest_runtime_matching_language_version(
|
||||||
language,
|
language,
|
||||||
version
|
version
|
||||||
);
|
);
|
||||||
|
|
||||||
if (rt === undefined) {
|
if (rt === undefined) {
|
||||||
return reject({
|
return reject({
|
||||||
message: `${language}-${version} runtime is unknown`,
|
message: `${language}-${version} runtime is unknown`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let constraint of ['memory_limit', 'timeout']) {
|
|
||||||
for (let type of ['compile', 'run']) {
|
|
||||||
let constraint_name = `${type}_${constraint}`;
|
|
||||||
let constraint_value = body[constraint_name];
|
|
||||||
let configured_limit = rt[`${constraint}s`][type];
|
|
||||||
if (!constraint_value) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (typeof constraint_value !== 'number') {
|
|
||||||
return reject({
|
|
||||||
message: `If specified, ${constraint_name} must be a number`
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (configured_limit <= 0) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (constraint_value > configured_limit) {
|
|
||||||
return reject({
|
|
||||||
message: `${constraint_name} cannot exceed the configured limit of ${configured_limit}`
|
|
||||||
});
|
|
||||||
}
|
|
||||||
if (constraint_value < 0) {
|
|
||||||
return reject({
|
|
||||||
message: `${constraint_name} must be non-negative`
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
compile_timeout = compile_timeout || rt.timeouts.compile;
|
|
||||||
run_timeout = run_timeout || rt.timeouts.run;
|
|
||||||
compile_memory_limit = compile_memory_limit || rt.memory_limits.compile;
|
|
||||||
run_timeout = run_timeout || rt.timeouts.run;
|
|
||||||
resolve(new Job({
|
resolve(new Job({
|
||||||
runtime: rt,
|
runtime: rt,
|
||||||
|
alias: language,
|
||||||
args: args || [],
|
args: args || [],
|
||||||
stdin: stdin || "",
|
stdin: stdin || "",
|
||||||
files,
|
files,
|
||||||
timeouts: {
|
timeouts: {
|
||||||
run: run_timeout,
|
run: run_timeout || 3000,
|
||||||
compile: compile_timeout,
|
compile: compile_timeout || 10000,
|
||||||
},
|
},
|
||||||
memory_limits: {
|
memory_limits: {
|
||||||
run: run_memory_limit,
|
run: run_memory_limit || config.run_memory_limit,
|
||||||
compile: compile_memory_limit,
|
compile: compile_memory_limit || config.compile_memory_limit,
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
});
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
router.use((req, res, next) => {
|
router.use((req, res, next) => {
|
||||||
|
|
|
@ -2,48 +2,6 @@ const fss = require('fs');
|
||||||
const Logger = require('logplease');
|
const Logger = require('logplease');
|
||||||
const logger = Logger.create('config');
|
const logger = Logger.create('config');
|
||||||
|
|
||||||
function parse_overrides(overrides) {
|
|
||||||
try {
|
|
||||||
return JSON.parse(overrides);
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function validate_overrides(overrides, options) {
|
|
||||||
for (let language in overrides) {
|
|
||||||
for (let key in overrides[language]) {
|
|
||||||
if (
|
|
||||||
![
|
|
||||||
'max_process_count', 'max_open_files', 'max_file_size',
|
|
||||||
'compile_memory_limit', 'run_memory_limit', 'compile_timeout',
|
|
||||||
'run_timeout', 'output_max_size'
|
|
||||||
].includes(key)
|
|
||||||
) {
|
|
||||||
logger.error(`Invalid overridden option: ${key}`);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
let option = options.find((o) => o.key === key);
|
|
||||||
let parser = option.parser;
|
|
||||||
let raw = overrides[language][key];
|
|
||||||
let value = parser(raw);
|
|
||||||
let validators = option.validators;
|
|
||||||
for (let validator of validators) {
|
|
||||||
let response = validator(value, raw);
|
|
||||||
if (response !== true) {
|
|
||||||
logger.error(`Failed to validate overridden option: ${key}`, response);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
overrides[language][key] = value;
|
|
||||||
}
|
|
||||||
// Modifies the reference
|
|
||||||
options[options.index_of(options.find((o) => o.key === 'limit_overrides'))] = overrides;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
const options = [
|
const options = [
|
||||||
{
|
{
|
||||||
key: 'log_level',
|
key: 'log_level',
|
||||||
|
@ -133,22 +91,6 @@ const options = [
|
||||||
parser: parse_int,
|
parser: parse_int,
|
||||||
validators: [(x, raw) => !is_nan(x) || `${raw} is not a number`],
|
validators: [(x, raw) => !is_nan(x) || `${raw} is not a number`],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
key: 'compile_timeout',
|
|
||||||
desc:
|
|
||||||
'Max time allowed for compile stage in milliseconds',
|
|
||||||
default: 10000, // 10 seconds
|
|
||||||
parser: parse_int,
|
|
||||||
validators: [(x, raw) => !is_nan(x) || `${raw} is not a number`],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'run_timeout',
|
|
||||||
desc:
|
|
||||||
'Max time allowed for run stage in milliseconds',
|
|
||||||
default: 3000, // 3 seconds
|
|
||||||
parser: parse_int,
|
|
||||||
validators: [(x, raw) => !is_nan(x) || `${raw} is not a number`],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: 'compile_memory_limit',
|
key: 'compile_memory_limit',
|
||||||
desc:
|
desc:
|
||||||
|
@ -178,18 +120,6 @@ const options = [
|
||||||
default: 64,
|
default: 64,
|
||||||
parser: parse_int,
|
parser: parse_int,
|
||||||
validators: [(x) => x > 0 || `${x} cannot be negative`]
|
validators: [(x) => x > 0 || `${x} cannot be negative`]
|
||||||
},
|
|
||||||
{
|
|
||||||
key: 'limit_overrides',
|
|
||||||
desc: 'Per-language exceptions in JSON format for each of:\
|
|
||||||
max_process_count, max_open_files, max_file_size, compile_memory_limit,\
|
|
||||||
run_memory_limit, compile_timeout, run_timeout, output_max_size',
|
|
||||||
default: {},
|
|
||||||
parser: parse_overrides,
|
|
||||||
validators: [
|
|
||||||
(x) => !!x || `Invalid JSON format for the overrides\n${x}`,
|
|
||||||
(overrides, _, options) => validate_overrides(overrides, options) || `Failed to validate the overrides`
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -208,12 +138,12 @@ options.forEach(option => {
|
||||||
|
|
||||||
const parsed_val = parser(env_val);
|
const parsed_val = parser(env_val);
|
||||||
|
|
||||||
const value = parsed_val || option.default;
|
const value = env_val || option.default;
|
||||||
|
|
||||||
option.validators.for_each(validator => {
|
option.validators.for_each(validator => {
|
||||||
let response = null;
|
let response = null;
|
||||||
if (env_val) response = validator(parsed_val, env_val, options);
|
if (env_val) response = validator(parsed_val, env_val);
|
||||||
else response = validator(value, value, options);
|
else response = validator(value, value);
|
||||||
|
|
||||||
if (response !== true) {
|
if (response !== true) {
|
||||||
errored = true;
|
errored = true;
|
||||||
|
|
|
@ -30,7 +30,7 @@ setInterval(()=>{
|
||||||
|
|
||||||
|
|
||||||
class Job {
|
class Job {
|
||||||
constructor({ runtime, files, args, stdin }) {
|
constructor({ runtime, files, args, stdin, timeouts, memory_limits }) {
|
||||||
this.uuid = uuidv4();
|
this.uuid = uuidv4();
|
||||||
this.runtime = runtime;
|
this.runtime = runtime;
|
||||||
this.files = files.map((file, i) => ({
|
this.files = files.map((file, i) => ({
|
||||||
|
@ -40,6 +40,8 @@ class Job {
|
||||||
|
|
||||||
this.args = args;
|
this.args = args;
|
||||||
this.stdin = stdin;
|
this.stdin = stdin;
|
||||||
|
this.timeouts = timeouts;
|
||||||
|
this.memory_limits = memory_limits;
|
||||||
|
|
||||||
this.uid = config.runner_uid_min + uid;
|
this.uid = config.runner_uid_min + uid;
|
||||||
this.gid = config.runner_gid_min + gid;
|
this.gid = config.runner_gid_min + gid;
|
||||||
|
@ -100,9 +102,9 @@ class Job {
|
||||||
|
|
||||||
const prlimit = [
|
const prlimit = [
|
||||||
'prlimit',
|
'prlimit',
|
||||||
'--nproc=' + this.runtime.max_process_count,
|
'--nproc=' + config.max_process_count,
|
||||||
'--nofile=' + this.runtime.max_open_files,
|
'--nofile=' + config.max_open_files,
|
||||||
'--fsize=' + this.runtime.max_file_size,
|
'--fsize=' + config.max_file_size,
|
||||||
];
|
];
|
||||||
|
|
||||||
if (memory_limit >= 0) {
|
if (memory_limit >= 0) {
|
||||||
|
@ -141,6 +143,8 @@ class Job {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const kill_timeout = set_timeout(
|
const kill_timeout = set_timeout(
|
||||||
async _ => {
|
async _ => {
|
||||||
logger.info(`Timeout exceeded timeout=${timeout} uuid=${this.uuid}`)
|
logger.info(`Timeout exceeded timeout=${timeout} uuid=${this.uuid}`)
|
||||||
|
@ -152,7 +156,7 @@ class Job {
|
||||||
proc.stderr.on('data', async data => {
|
proc.stderr.on('data', async data => {
|
||||||
if(eventBus !== null) {
|
if(eventBus !== null) {
|
||||||
eventBus.emit("stderr", data);
|
eventBus.emit("stderr", data);
|
||||||
} else if (stderr.length > this.runtime.output_max_size) {
|
} else if (stderr.length > config.output_max_size) {
|
||||||
logger.info(`stderr length exceeded uuid=${this.uuid}`)
|
logger.info(`stderr length exceeded uuid=${this.uuid}`)
|
||||||
process.kill(proc.pid, 'SIGKILL')
|
process.kill(proc.pid, 'SIGKILL')
|
||||||
} else {
|
} else {
|
||||||
|
@ -164,7 +168,7 @@ class Job {
|
||||||
proc.stdout.on('data', async data => {
|
proc.stdout.on('data', async data => {
|
||||||
if(eventBus !== null){
|
if(eventBus !== null){
|
||||||
eventBus.emit("stdout", data);
|
eventBus.emit("stdout", data);
|
||||||
} else if (stdout.length > this.runtime.output_max_size) {
|
} else if (stdout.length > config.output_max_size) {
|
||||||
logger.info(`stdout length exceeded uuid=${this.uuid}`)
|
logger.info(`stdout length exceeded uuid=${this.uuid}`)
|
||||||
process.kill(proc.pid, 'SIGKILL')
|
process.kill(proc.pid, 'SIGKILL')
|
||||||
} else {
|
} else {
|
||||||
|
@ -219,8 +223,8 @@ class Job {
|
||||||
compile = await this.safe_call(
|
compile = await this.safe_call(
|
||||||
path.join(this.runtime.pkgdir, 'compile'),
|
path.join(this.runtime.pkgdir, 'compile'),
|
||||||
this.files.map(x => x.name),
|
this.files.map(x => x.name),
|
||||||
this.runtime.timeouts.compile,
|
this.timeouts.compile,
|
||||||
this.runtime.memory_limits.compile
|
this.memory_limits.compile
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -229,8 +233,8 @@ class Job {
|
||||||
const run = await this.safe_call(
|
const run = await this.safe_call(
|
||||||
path.join(this.runtime.pkgdir, 'run'),
|
path.join(this.runtime.pkgdir, 'run'),
|
||||||
[this.files[0].name, ...this.args],
|
[this.files[0].name, ...this.args],
|
||||||
this.runtime.timeouts.run,
|
this.timeouts.run,
|
||||||
this.runtime.memory_limits.run
|
this.memory_limits.run
|
||||||
);
|
);
|
||||||
|
|
||||||
this.state = job_states.EXECUTED;
|
this.state = job_states.EXECUTED;
|
||||||
|
@ -262,8 +266,8 @@ class Job {
|
||||||
const {error, code, signal} = await this.safe_call(
|
const {error, code, signal} = await this.safe_call(
|
||||||
path.join(this.runtime.pkgdir, 'compile'),
|
path.join(this.runtime.pkgdir, 'compile'),
|
||||||
this.files.map(x => x.name),
|
this.files.map(x => x.name),
|
||||||
this.runtime.timeouts.compile,
|
this.timeouts.compile,
|
||||||
this.runtime.memory_limits.compile,
|
this.memory_limits.compile,
|
||||||
eventBus
|
eventBus
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -275,8 +279,8 @@ class Job {
|
||||||
const {error, code, signal} = await this.safe_call(
|
const {error, code, signal} = await this.safe_call(
|
||||||
path.join(this.runtime.pkgdir, 'run'),
|
path.join(this.runtime.pkgdir, 'run'),
|
||||||
[this.files[0].name, ...this.args],
|
[this.files[0].name, ...this.args],
|
||||||
this.runtime.timeouts.run,
|
this.timeouts.run,
|
||||||
this.runtime.memory_limits.run,
|
this.memory_limits.run,
|
||||||
eventBus
|
eventBus
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -305,6 +309,7 @@ class Job {
|
||||||
const uid_line = proc_lines.find(line=>line.starts_with("Uid:"))
|
const uid_line = proc_lines.find(line=>line.starts_with("Uid:"))
|
||||||
const [_, ruid, euid, suid, fuid] = uid_line.split(/\s+/);
|
const [_, ruid, euid, suid, fuid] = uid_line.split(/\s+/);
|
||||||
|
|
||||||
|
|
||||||
if(ruid == this.uid || euid == this.uid)
|
if(ruid == this.uid || euid == this.uid)
|
||||||
return parse_int(proc_id)
|
return parse_int(proc_id)
|
||||||
|
|
||||||
|
|
|
@ -8,54 +8,12 @@ const path = require('path');
|
||||||
const runtimes = [];
|
const runtimes = [];
|
||||||
|
|
||||||
class Runtime {
|
class Runtime {
|
||||||
constructor({
|
constructor({ language, version, aliases, pkgdir, runtime }) {
|
||||||
language, version, aliases, pkgdir, runtime, timeouts, memory_limits, max_process_count,
|
|
||||||
max_open_files, max_file_size, output_max_size
|
|
||||||
}) {
|
|
||||||
this.language = language;
|
this.language = language;
|
||||||
this.version = version;
|
this.version = version;
|
||||||
this.aliases = aliases || [];
|
this.aliases = aliases || [];
|
||||||
this.pkgdir = pkgdir;
|
this.pkgdir = pkgdir;
|
||||||
this.runtime = runtime;
|
this.runtime = runtime;
|
||||||
this.timeouts = timeouts;
|
|
||||||
this.memory_limits = memory_limits;
|
|
||||||
this.max_process_count = max_process_count;
|
|
||||||
this.max_open_files = max_open_files;
|
|
||||||
this.max_file_size = max_file_size;
|
|
||||||
this.output_max_size = output_max_size;
|
|
||||||
}
|
|
||||||
|
|
||||||
static compute_single_limit(language_name, limit_name, language_limit_overrides) {
|
|
||||||
return (
|
|
||||||
config.limit_overrides[language_name] && config.limit_overrides[language_name][limit_name]
|
|
||||||
|| language_limit_overrides && language_limit_overrides[limit_name]
|
|
||||||
|| config[limit_name]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
static compute_all_limits(language_name, language_limit_overrides) {
|
|
||||||
return {
|
|
||||||
timeouts: {
|
|
||||||
compile:
|
|
||||||
this.compute_single_limit(language_name, 'compile_timeout', language_limit_overrides),
|
|
||||||
run:
|
|
||||||
this.compute_single_limit(language_name, 'run_timeout', language_limit_overrides)
|
|
||||||
},
|
|
||||||
memory_limits: {
|
|
||||||
compile:
|
|
||||||
this.compute_single_limit(language_name, 'compile_memory_limit', language_limit_overrides),
|
|
||||||
run:
|
|
||||||
this.compute_single_limit(language_name, 'run_memory_limit', language_limit_overrides)
|
|
||||||
},
|
|
||||||
max_process_count:
|
|
||||||
this.compute_single_limit(language_name, 'max_process_count', language_limit_overrides),
|
|
||||||
max_open_files:
|
|
||||||
this.compute_single_limit(language_name, 'max_open_files', language_limit_overrides),
|
|
||||||
max_file_size:
|
|
||||||
this.compute_single_limit(language_name, 'max_file_size', language_limit_overrides),
|
|
||||||
output_max_size:
|
|
||||||
this.compute_single_limit(language_name, 'output_max_size', language_limit_overrides),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static load_package(package_dir) {
|
static load_package(package_dir) {
|
||||||
|
@ -63,7 +21,7 @@ class Runtime {
|
||||||
fss.read_file_sync(path.join(package_dir, 'pkg-info.json'))
|
fss.read_file_sync(path.join(package_dir, 'pkg-info.json'))
|
||||||
);
|
);
|
||||||
|
|
||||||
let { language, version, build_platform, aliases, provides, limit_overrides } = info;
|
let { language, version, build_platform, aliases, provides } = info;
|
||||||
version = semver.parse(version);
|
version = semver.parse(version);
|
||||||
|
|
||||||
if (build_platform !== globals.platform) {
|
if (build_platform !== globals.platform) {
|
||||||
|
@ -83,7 +41,6 @@ class Runtime {
|
||||||
version,
|
version,
|
||||||
pkgdir: package_dir,
|
pkgdir: package_dir,
|
||||||
runtime: language,
|
runtime: language,
|
||||||
...Runtime.compute_all_limits(lang.language, lang.limit_overrides)
|
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
@ -94,7 +51,6 @@ class Runtime {
|
||||||
version,
|
version,
|
||||||
aliases,
|
aliases,
|
||||||
pkgdir: package_dir,
|
pkgdir: package_dir,
|
||||||
...Runtime.compute_all_limits(language, limit_overrides)
|
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,10 +7,8 @@ rm dotnet.tar.gz
|
||||||
# Cache nuget packages
|
# Cache nuget packages
|
||||||
export DOTNET_CLI_HOME=$PWD
|
export DOTNET_CLI_HOME=$PWD
|
||||||
./dotnet new console -o cache_application
|
./dotnet new console -o cache_application
|
||||||
./dotnet new console -lang F# -o fs_cache_application
|
|
||||||
./dotnet new console -lang VB -o vb_cache_application
|
|
||||||
# This calls a restore on the global-packages index ($DOTNET_CLI_HOME/.nuget/packages)
|
# This calls a restore on the global-packages index ($DOTNET_CLI_HOME/.nuget/packages)
|
||||||
# If we want to allow more packages, we could add them to this cache_application
|
# If we want to allow more packages, we could add them to this cache_application
|
||||||
|
|
||||||
rm -rf cache_application fs_cache_application vb_cache_application
|
rm -rf cache_application
|
||||||
# Get rid of it, we don't actually need the application - just the restore
|
# Get rid of it, we don't actually need the application - just the restore
|
|
@ -1,36 +1,15 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
[ "${PISTON_LANGUAGE}" == "fsi" ] && exit 0
|
|
||||||
|
|
||||||
export DOTNET_CLI_HOME=$PWD
|
export DOTNET_CLI_HOME=$PWD
|
||||||
export HOME=$PWD
|
export HOME=$PWD
|
||||||
|
|
||||||
|
rename 's/$/\.cs/' "$@" # Add .cs extension
|
||||||
|
|
||||||
dotnet build --help > /dev/null # Shut the thing up
|
dotnet build --help > /dev/null # Shut the thing up
|
||||||
|
|
||||||
case "${PISTON_LANGUAGE}" in
|
|
||||||
basic.net)
|
|
||||||
rename 's/$/\.vb/' "$@" # Add .vb extension
|
|
||||||
dotnet new console -lang VB -o . --no-restore
|
|
||||||
rm Program.vb
|
|
||||||
;;
|
|
||||||
fsharp.net)
|
|
||||||
first_file=$1
|
|
||||||
shift
|
|
||||||
rename 's/$/\.fs/' "$@" # Add .fs extension
|
|
||||||
dotnet new console -lang F# -o . --no-restore
|
|
||||||
mv $first_file Program.fs # For some reason F#.net doesn't work unless the file name is Program.fs
|
|
||||||
;;
|
|
||||||
csharp.net)
|
|
||||||
rename 's/$/\.cs/' "$@" # Add .cs extension
|
|
||||||
dotnet new console -o . --no-restore
|
dotnet new console -o . --no-restore
|
||||||
rm Program.cs
|
rm Program.cs
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "How did you get here? (${PISTON_LANGUAGE})"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
|
|
||||||
esac
|
|
||||||
|
|
||||||
dotnet restore --source $DOTNET_ROOT/.nuget/packages
|
dotnet restore --source $DOTNET_ROOT/.nuget/packages
|
||||||
dotnet build --no-restore
|
dotnet build --no-restore
|
|
@ -3,4 +3,3 @@
|
||||||
# Put 'export' statements here for environment variables
|
# Put 'export' statements here for environment variables
|
||||||
export DOTNET_ROOT=$PWD
|
export DOTNET_ROOT=$PWD
|
||||||
export PATH=$DOTNET_ROOT:$PATH
|
export PATH=$DOTNET_ROOT:$PATH
|
||||||
export FSI_PATH=$(find $(pwd) -name fsi.dll)
|
|
||||||
|
|
|
@ -1,66 +1,5 @@
|
||||||
{
|
{
|
||||||
"language": "dotnet",
|
"language": "dotnet",
|
||||||
"version": "5.0.201",
|
"version": "5.0.201",
|
||||||
"provides": [
|
"aliases": ["cs", "csharp"]
|
||||||
{
|
|
||||||
"language": "basic.net",
|
|
||||||
"aliases": [
|
|
||||||
"basic",
|
|
||||||
"visual-basic",
|
|
||||||
"visual-basic.net",
|
|
||||||
"vb",
|
|
||||||
"vb.net",
|
|
||||||
"vb-dotnet",
|
|
||||||
"dotnet-vb",
|
|
||||||
"basic-dotnet",
|
|
||||||
"dotnet-basic"
|
|
||||||
],
|
|
||||||
"limit_overrides": { "max_process_count": 128 }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"language": "fsharp.net",
|
|
||||||
"aliases": [
|
|
||||||
"fsharp",
|
|
||||||
"fs",
|
|
||||||
"f#",
|
|
||||||
"fs.net",
|
|
||||||
"f#.net",
|
|
||||||
"fsharp-dotnet",
|
|
||||||
"fs-dotnet",
|
|
||||||
"f#-dotnet",
|
|
||||||
"dotnet-fsharp",
|
|
||||||
"dotnet-fs",
|
|
||||||
"dotnet-fs"
|
|
||||||
],
|
|
||||||
"limit_overrides": { "max_process_count": 128 }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"language": "csharp.net",
|
|
||||||
"aliases": [
|
|
||||||
"csharp",
|
|
||||||
"c#",
|
|
||||||
"cs",
|
|
||||||
"c#.net",
|
|
||||||
"cs.net",
|
|
||||||
"c#-dotnet",
|
|
||||||
"cs-dotnet",
|
|
||||||
"csharp-dotnet",
|
|
||||||
"dotnet-c#",
|
|
||||||
"dotnet-cs",
|
|
||||||
"dotnet-csharp"
|
|
||||||
],
|
|
||||||
"limit_overrides": { "max_process_count": 128 }
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"language": "fsi",
|
|
||||||
"aliases": [
|
|
||||||
"fsx",
|
|
||||||
"fsharp-interactive",
|
|
||||||
"f#-interactive",
|
|
||||||
"dotnet-fsi",
|
|
||||||
"fsi-dotnet",
|
|
||||||
"fsi.net"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,23 +3,5 @@
|
||||||
# Put instructions to run the runtime
|
# Put instructions to run the runtime
|
||||||
export DOTNET_CLI_HOME=$PWD
|
export DOTNET_CLI_HOME=$PWD
|
||||||
|
|
||||||
case "${PISTON_LANGUAGE}" in
|
|
||||||
basic.net)
|
|
||||||
;&
|
|
||||||
fsharp.net)
|
|
||||||
;&
|
|
||||||
csharp.net)
|
|
||||||
shift
|
shift
|
||||||
dotnet bin/Debug/net5.0/$(basename $(realpath .)).dll "$@"
|
dotnet bin/Debug/net5.0/$(basename $(realpath .)).dll "$@"
|
||||||
;;
|
|
||||||
fsi)
|
|
||||||
FILENAME=$1
|
|
||||||
rename 's/$/\.fsx/' $FILENAME # Add .fsx extension
|
|
||||||
shift
|
|
||||||
dotnet $FSI_PATH $FILENAME.fsx "$@"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "How did you get here? (${PISTON_LANGUAGE})"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
open System
|
|
||||||
|
|
||||||
[<EntryPoint>]
|
|
||||||
let main argv =
|
|
||||||
printfn "OK"
|
|
||||||
0
|
|
|
@ -1 +0,0 @@
|
||||||
printfn "OK"
|
|
|
@ -1,9 +0,0 @@
|
||||||
Imports System
|
|
||||||
|
|
||||||
Module Module1
|
|
||||||
|
|
||||||
Sub Main()
|
|
||||||
Console.WriteLine("OK")
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
End Module
|
|
|
@ -330,10 +330,10 @@ Content-Type: application/json
|
||||||
`cow`,
|
`cow`,
|
||||||
`crystal`,
|
`crystal`,
|
||||||
`csharp`,
|
`csharp`,
|
||||||
`csharp.net`,
|
|
||||||
`d`,
|
`d`,
|
||||||
`dart`,
|
`dart`,
|
||||||
`dash`,
|
`dash`,
|
||||||
|
`dotnet`,
|
||||||
`dragon`,
|
`dragon`,
|
||||||
`elixir`,
|
`elixir`,
|
||||||
`emacs`,
|
`emacs`,
|
||||||
|
@ -341,8 +341,6 @@ Content-Type: application/json
|
||||||
`forte`,
|
`forte`,
|
||||||
`fortran`,
|
`fortran`,
|
||||||
`freebasic`,
|
`freebasic`,
|
||||||
`fsharp.net`,
|
|
||||||
`fsi`,
|
|
||||||
`go`,
|
`go`,
|
||||||
`golfscript`,
|
`golfscript`,
|
||||||
`groovy`,
|
`groovy`,
|
||||||
|
@ -384,7 +382,6 @@ Content-Type: application/json
|
||||||
`swift`,
|
`swift`,
|
||||||
`typescript`,
|
`typescript`,
|
||||||
`basic`,
|
`basic`,
|
||||||
`basic.net`,
|
|
||||||
`vlang`,
|
`vlang`,
|
||||||
`yeethon`,
|
`yeethon`,
|
||||||
`zig`,
|
`zig`,
|
||||||
|
|
Loading…
Reference in New Issue