mirror of
https://github.com/QingdaoU/Judger.git
synced 2024-12-28 16:01:41 +00:00
18 lines
465 B
YAML
18 lines
465 B
YAML
language: python
|
|
dist: trusty
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
sudo: required
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install libseccomp-dev cmake
|
|
install:
|
|
- mkdir build && cd build
|
|
- cmake .. && make && sudo make install
|
|
- cd ../bindings/Python && sudo `which python` setup.py install
|
|
script:
|
|
- cd ../../tests/Python_and_core && sudo `which python` test.py
|
|
notifications:
|
|
slack: onlinejudgeteam:BzBz8UFgmS5crpiblof17K2W
|