LDAPHOST: ldap://ldapserver/
ODBCINI: /github/home/.odbc.ini
AUTH_BACKEND_IP_ADDR: "172.17.0.1"
- options: --sysctl net.ipv6.conf.all.disable_ipv6=0
+ options: --sysctl net.ipv6.conf.all.disable_ipv6=0 -v /:/hostroot
strategy:
matrix:
include:
run: |
python3 -m venv ${REPO_HOME}/.venv
. ${REPO_HOME}/.venv/bin/activate && pip install -r ${REPO_HOME}/meson/requirements.txt
+ - run: ${{ env.INV_CMD }} github-more-diskspace
- run: ${{ env.INV_CMD }} install-clang-runtime
- run: ${{ env.INV_CMD }} install-auth-test-deps -b ${{ matrix.backend }}
- run: ${{ env.INV_CMD }} test-auth-backend -b ${{ matrix.backend }}
c.run(f'docker build . -t test-build-{product_name}-{distro_release}:latest -f /tmp/Dockerfile')
+@task
+def github_more_diskspace(c):
+ c.run('df -h / /hostroot')
+ for path in ['/usr/local/lib/android',
+ '/usr/local/.ghcup',
+ '/usr/share/dotnet',
+ '/usr/share/swift']:
+ c.sudo(f'rm -rf {path} /hostroot{path}')
+ c.run('df -h / /hostroot')
+
# this is run always
def setup():
if '/usr/lib/ccache' not in os.environ['PATH']: