diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4f9e8c9..e713dfb 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -22,8 +22,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: [x86_64, x86, - # aarch64, armv7, s390x, ppc64le + target: [ + #x86_64, x86, + aarch64 + # armv7, s390x, ppc64le ] steps: - uses: actions/checkout@v3 diff --git a/ci/prepare-ci-container.sh b/ci/prepare-ci-container.sh index 7c39781..30fe608 100755 --- a/ci/prepare-ci-container.sh +++ b/ci/prepare-ci-container.sh @@ -2,8 +2,13 @@ set -e - -yum install -y libxkbcommon-devel libatomic +if command -v apt-get &> /dev/null; then + echo "using apt-get" + apt-get install -y libxkbcommon-dev automake libtool #autotools-dev automake libtool +elif command -v yum &> /dev/null; then + echo "using yum" + yum install -y libxkbcommon-devel libatomic +fi cd /tmp git clone https://github.com/pkgconf/pkgconf