Add python3 yaml package

This commit is contained in:
jpic 2020-02-16 14:42:48 +01:00
parent 2ea37fb01d
commit 9736c1bb2b
2 changed files with 2 additions and 1 deletions

View File

@ -141,7 +141,7 @@ class Packages(Action):
cachedir = os.path.join(self.cache_root, self.mgr)
await self.mount(cachedir, '/var/cache/apk')
# special step to enable apk cache
await self.rexec('ln -s /var/cache/apk /etc/apk/cache')
await self.rexec('ln -sf /var/cache/apk /etc/apk/cache')
return cachedir
async def dnf_setup(self):

View File

@ -4,6 +4,7 @@ from shlax.contrib.gitlab import *
PYTEST = 'py.test -svv tests'
build = Buildah(
Packages('py3-yaml'),
Copy('shlax/', 'setup.py', '/app'),
Pip('/app'),
commit='yourlabs/shlax',