This is a scheduler for Open Workload project, which core daemon can be found here. Sky Port is an universal bus between user software and compute resources. It can also be considered as a transportation layer between workload producers and compute resource providers. Sky Port makes it easy to connect user software to different cloud resources. Jobs submitted to Sky Port are scheduled by the daemon represented by this repository.
- gcc with C++17 support
- cmake version >= 3.6
- The project depends on swm-core sources, thus create a sym link to swm-core in ./deps:
pushd deps
ln -s ../../swm-core .
popd-
Optionally, you can enable unit tests - just install GTest package. Instructions are provided in the following section.
-
Generate compilation files by CMake tool:
cmake -G "Unix Makefiles"
makeBefore generating compilation files, perform the following actions:
-
Download and unzip GTest sources (https://github.com/google/googletest). Set directory with GTest sources as current.
-
Generate GTest's compilation files by CMake tool:
- Linux:
export GTEST_ROOT=/usr/local/GTest
cmake . -G "Unix Makefiles"- Compile and install GTest:
make
make install- Set up environment variable GTEST_ROOT as
/usr/local/GTest.
./bin/swm-sched-testsact -j unittestsWe appreciate all contributions. If you are planning to contribute back bug-fixes, please do so without any further discussion. If you plan to contribute new features, utility functions or extensions, please first open an issue and discuss the feature with us.
We use a shared copyright model that enables all contributors to maintain the copyright on their contributions.
This software is licensed under the BSD-3-Clause license. See the LICENSE file for details.