summaryrefslogtreecommitdiffstats
path: root/src/consts.rs
blob: 8891f81db0a028f3c76e6e05011b3c09bad7f454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
//


/// The path to the directory inside the container where the inputs for the script run are copied
/// to.
pub const INPUTS_DIR_PATH: &str  = "/inputs";

/// The path to the directory inside the container where the outputs of a compile job must be
/// located after the script was run
pub const OUTPUTS_DIR_PATH: &str = "/outputs";

/// The path where the script that is executed inside the container is copied to.
pub const SCRIPT_PATH: &str      = "/script";