-
-
Notifications
You must be signed in to change notification settings - Fork 401
29 lines (26 loc) · 705 Bytes
/
tests.yml
File metadata and controls
29 lines (26 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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.2 /bin/sh build.sh test
continue-on-error: true # Tests are expected to fail, see issue #812