Closes #1472: Implement in-memory config backend for config overrides in context manager #1062
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests (s390x) | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| paths-ignore: | |
| - '**.rst' | |
| jobs: | |
| linux-s390x: | |
| runs-on: ubuntu-24.04 | |
| if: github.ref == 'refs/heads/master' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Build & test | |
| uses: uraimo/run-on-arch-action@v3 | |
| with: | |
| arch: s390x | |
| distro: ubuntu22.04 | |
| install: | | |
| apt-get update -q -y | |
| apt-get install -q -y cmake libssl-dev python3-dev python3-venv wget | |
| run: | | |
| LIBSSH2_VERSION=1.11.1 LIBGIT2_VERSION=1.9.4 /bin/sh build.sh test | |
| continue-on-error: true # Tests are expected to fail, see issue #812 |