attempt to fix ci on macos

This commit is contained in:
Manuel Barkhau 2020-08-27 13:31:40 +00:00
parent 298a051795
commit 819e3cbeee
2 changed files with 4 additions and 9 deletions

View file

@ -47,15 +47,6 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: brew install mercurial
run: brew install mercurial
- name: debug hg
run: which hg
- name: debug mercurial
run: which mercurial
- name: Cache Conda Envs - name: Cache Conda Envs
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
@ -66,6 +57,9 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.OS }}-conda-cache-${{ hashFiles('requirements/*.txt', 'setup.py', 'makefile*') }} ${{ runner.OS }}-conda-cache-${{ hashFiles('requirements/*.txt', 'setup.py', 'makefile*') }}
- name: brew install mercurial
run: brew install mercurial
- name: make conda - name: make conda
run: run:
if [[ -e build/envs.txt ]]; then touch build/envs.txt; fi; if [[ -e build/envs.txt ]]; then touch build/envs.txt; fi;

View file

@ -36,6 +36,7 @@ ENV = {
'GIT_AUTHOR_EMAIL' : "pycalver_tester@nowhere.com", 'GIT_AUTHOR_EMAIL' : "pycalver_tester@nowhere.com",
'GIT_COMMITTER_EMAIL': "pycalver_tester@nowhere.com", 'GIT_COMMITTER_EMAIL': "pycalver_tester@nowhere.com",
'HGUSER' : "pycalver_tester", 'HGUSER' : "pycalver_tester",
'PATH' : os.environ['PATH'],
} }