master may not be available

This commit is contained in:
Thom Wiggers 2019-04-16 15:01:31 +02:00
父節點 33605f05d8
當前提交 a7a8c02c27
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 001BB0A7CE26E363
共有 3 個文件被更改,包括 6 次插入1 次删除

查看文件

@ -6,6 +6,8 @@ matrix:
compiler: clang
before_install:
- pip3 install -r requirements.txt
before_script:
- git fetch --unshallow
script:
- "cd test && python3 -m nose --rednose --verbose"
env:
@ -26,6 +28,7 @@ matrix:
env:
PQCLEAN_ONLY_DIFF: 1
before_install:
- git fetch --unshallow
- pip3 install -r requirements.txt
- brew link gcc
- export PATH="/usr/local/bin:$PATH"

查看文件

@ -5,6 +5,8 @@ image: Visual Studio 2017
build:
verbosity: minimal
shallow_clone: false
environment:
PQCLEAN_ONLY_DIFF: 1
matrix:

查看文件

@ -161,7 +161,7 @@ def permit_test(testname, thing, **args):
return True
# where are there changes?
diff_result = subprocess.run(
['git', 'diff', '--name-only', 'master'],
['git', 'diff', '--name-only', 'origin/master'],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
)