Skip to content

Commit

Permalink
Add aarch64 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
shiro committed May 23, 2024
1 parent ee62551 commit e5a18c6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ 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
Expand Down
9 changes: 7 additions & 2 deletions ci/prepare-ci-container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 libxkbcommon-dev
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
Expand Down

0 comments on commit e5a18c6

Please sign in to comment.