-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
389 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
[meta] | ||
; (string) Mission type: hst, jwst | ||
mission = | ||
|
||
; (string) Name of delivery | ||
name = | ||
|
||
; (string) A codename is only used when mission is set to "hst" | ||
codename = | ||
|
||
; (string) Version of the delivery | ||
version = | ||
|
||
; (string) Release Candidate of delivery. | ||
; NOTE: Ignored when final is true. | ||
rc = | ||
|
||
; (boolean) Enable delivery finalization routines | ||
final = | ||
|
||
; (string) URL of Conda environment YAML | ||
; NOTE: Generally the final release of a older delivery | ||
based_on = | ||
|
||
; (string) Target version of Python | ||
python = | ||
|
||
[conda] | ||
installer_name = Miniforge3 | ||
installer_version = 23.3.1-1 | ||
installer_platform = ${OMC_CONDA_PLATFORM} | ||
installer_arch = ${OMC_CONDA_ARCH} | ||
installer_baseurl = https://github.com/conda-forge/miniforge/releases/latest/download | ||
|
||
; (list) Conda packages to install | ||
conda_packages = | ||
|
||
; (list) Python packages to install | ||
pip_packages = | ||
|
||
[runtime] | ||
; (string) Environment variable key pairs | ||
; key=value | ||
|
||
[test:name] ; where test:"name" denotes the package name | ||
; (string) Version of tested package | ||
version = | ||
|
||
; (string) Git repository of tested package | ||
repository = | ||
|
||
; (list) Commands to execute against tested package | ||
script = | ||
[meta] | ||
; (string) Mission type: hst, jwst | ||
mission = | ||
|
||
; (string) Name of delivery | ||
name = | ||
|
||
; (string) A codename is only used when mission is set to "hst" | ||
codename = | ||
|
||
; (string) Version of the delivery | ||
version = | ||
|
||
; (string) Release Candidate of delivery. | ||
; NOTE: Ignored when final is true. | ||
rc = | ||
|
||
; (boolean) Enable delivery finalization routines | ||
final = | ||
|
||
; (string) URL of Conda environment YAML | ||
; NOTE: Generally the final release of a older delivery | ||
based_on = | ||
|
||
; (string) Target version of Python | ||
python = | ||
|
||
[conda] | ||
installer_name = Miniforge3 | ||
installer_version = 23.3.1-1 | ||
installer_platform = ${OMC_CONDA_PLATFORM} | ||
installer_arch = ${OMC_CONDA_ARCH} | ||
installer_baseurl = https://github.com/conda-forge/miniforge/releases/latest/download | ||
|
||
; (list) Conda packages to install | ||
conda_packages = | ||
|
||
; (list) Python packages to install | ||
pip_packages = | ||
|
||
[runtime] | ||
; (string) Environment variable key pairs | ||
; key=value | ||
|
||
[test:name] ; where test:"name" denotes the package name | ||
; (string) Version of tested package | ||
version = | ||
|
||
; (string) Git repository of tested package | ||
repository = | ||
|
||
; (list) Commands to execute against tested package | ||
script = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// Created by jhunk on 5/19/2024. | ||
// | ||
|
||
#ifndef OMC_OS_WINDOWS_H | ||
#define OMC_OS_WINDOWS_H | ||
|
||
|
||
#include <winsock2.h> | ||
#include <windows.h> | ||
#include <direct.h> | ||
#define lstat stat | ||
#define NAME_MAX 256 | ||
#define MAXNAMLEN 256 | ||
#define __environ _environ | ||
#undef mkdir | ||
#define mkdir(X, Y) _mkdir(X) | ||
|
||
int setenv(const char *key, const char *value, int overwrite); | ||
char *realpath(const char *path, char **dest); | ||
|
||
#endif //OMC_OS_WINDOWS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.