master may not be available
This commit is contained in:
parent
33605f05d8
commit
a7a8c02c27
@ -6,6 +6,8 @@ matrix:
|
|||||||
compiler: clang
|
compiler: clang
|
||||||
before_install:
|
before_install:
|
||||||
- pip3 install -r requirements.txt
|
- pip3 install -r requirements.txt
|
||||||
|
before_script:
|
||||||
|
- git fetch --unshallow
|
||||||
script:
|
script:
|
||||||
- "cd test && python3 -m nose --rednose --verbose"
|
- "cd test && python3 -m nose --rednose --verbose"
|
||||||
env:
|
env:
|
||||||
@ -26,6 +28,7 @@ matrix:
|
|||||||
env:
|
env:
|
||||||
PQCLEAN_ONLY_DIFF: 1
|
PQCLEAN_ONLY_DIFF: 1
|
||||||
before_install:
|
before_install:
|
||||||
|
- git fetch --unshallow
|
||||||
- pip3 install -r requirements.txt
|
- pip3 install -r requirements.txt
|
||||||
- brew link gcc
|
- brew link gcc
|
||||||
- export PATH="/usr/local/bin:$PATH"
|
- export PATH="/usr/local/bin:$PATH"
|
||||||
|
@ -5,6 +5,8 @@ image: Visual Studio 2017
|
|||||||
build:
|
build:
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
|
|
||||||
|
shallow_clone: false
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
PQCLEAN_ONLY_DIFF: 1
|
PQCLEAN_ONLY_DIFF: 1
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -161,7 +161,7 @@ def permit_test(testname, thing, **args):
|
|||||||
return True
|
return True
|
||||||
# where are there changes?
|
# where are there changes?
|
||||||
diff_result = subprocess.run(
|
diff_result = subprocess.run(
|
||||||
['git', 'diff', '--name-only', 'master'],
|
['git', 'diff', '--name-only', 'origin/master'],
|
||||||
stdout=subprocess.PIPE,
|
stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.STDOUT
|
stderr=subprocess.STDOUT
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user