-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fa3f2d
commit b23b2e2
Showing
7 changed files
with
663 additions
and
23 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -232,6 +232,7 @@ jobs: | |
id: test | ||
uses: cross-platform-actions/[email protected] | ||
with: | ||
#note: sanitizer seems to be broken on s390x (fails trying to allocate several tbs of mem) and package manager works slightly differently that on regular ubuntu | ||
operating_system: freebsd | ||
architecture: x86-64 | ||
version: '14.0' | ||
|
@@ -243,6 +244,30 @@ 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: ubuntu22.04 | ||
install: | | ||
apt-get update -q -y | ||
apt-get -y install sudo | ||
apt-get -y install cmake | ||
apt-get -y install make | ||
apt-get -y install g++ | ||
apt-get -y install python3 | ||
apt-get -y install git | ||
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 }} --variant s390x --cmake-extra=-DENABLE_SANITIZERS=OFF | ||
openbsd: | ||
runs-on: ubuntu-24.04 # latest | ||
strategy: | ||
|
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
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
Oops, something went wrong.