Skip to content

Commit

Permalink
add big endian support
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Oct 5, 2024
1 parent ce04ab0 commit 4d17d9e
Show file tree
Hide file tree
Showing 4 changed files with 660 additions and 29 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,27 @@ jobs:
chmod a+x builder
./builder build -p ${{ env.PACKAGE_NAME }}
s390x: #big-endian
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
name: Run commands
id: runcmd
with:
arch: s390x
distro: ubuntu_latest
install: |
apt-get update -q -y
apt-get -y install cmake
apt-get -y install make
apt-get -y install g++
run: |
lscpu | grep Endian
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
chmod a+x builder
./builder build -p ${{ env.PACKAGE_NAME }}
openbsd:
runs-on: ubuntu-24.04 # latest
strategy:
Expand Down
Loading

0 comments on commit 4d17d9e

Please sign in to comment.