docs: clean up install #45
This file contains 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: s390x lin auto | |
on: [push, pull_request] | |
jobs: | |
s390x_job: | |
name: s390x lin auto | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: test | |
uses: uraimo/run-on-arch-action@v2 | |
id: runcmd | |
with: | |
arch: s390x | |
distro: ubuntu_latest | |
install: | | |
apt-get update -q -y | |
apt-get install -q -y git cmake zlib1g zlib1g-dev | |
apt-get install -q -y autotools-dev g++ libtool | |
run: | | |
./autogen.sh | |
./configure | |
make | |
make check | |
make install | |
make uninstall |