feat: Install pygit2 1.7.0

This commit is contained in:
Carlos Álvaro
2021-10-31 22:17:22 +01:00
committed by Carlos Álvaro
parent c8370829d0
commit d795ea2963
12 changed files with 381 additions and 51 deletions

View File

@@ -119,6 +119,15 @@ jobs:
- name: Execute salt-api tests
run: tests/salt-api/test.sh
- name: Execute gitfs tests
env:
GITFS_KEYS_DIR: tests/gitfs/data/keys/gitfs
run: |
mkdir -p "${GITFS_KEYS_DIR}"
echo ${{ secrets.TESTS_REPO_PRIVATE_KEY }} > "${GITFS_KEYS_DIR}"/gitfs_ssh && chmod 600 !$
echo ${{ secrets.TESTS_REPO_PUBLIC_KEY }} > "${GITFS_KEYS_DIR}"/gitfs_ssh.pub && chmod 644 !$
tests/gitfs/test.sh
- name: Cleanup
run: |
docker stop registry