Skip to content

Commit

Permalink
Add support for Linux s390x. (#255)
Browse files Browse the repository at this point in the history
Mainframe Linux support has been on my list.
  • Loading branch information
jsirois authored Dec 12, 2024
1 parent 0f50b3f commit d245f6b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
- os: ubuntu-24.04
name: Linux armv7l (musl)
cross-target: armv7-unknown-linux-musleabihf
- os: ubuntu-24.04
name: Linux s390x
cross-target: s390x-unknown-linux-gnu
- os: macos-13
name: macOS x86-64
- os: macos-14
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:
- os: ubuntu-24.04
name: Linux armv7l
cross-target: armv7-unknown-linux-musleabihf
- os: ubuntu-24.04
name: Linux s390x
cross-target: s390x-unknown-linux-gnu
- os: macos-13
name: macOS x86-64
- os: macos-14
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 1.4.0

This release adds support for Linux s390x.

## 1.3.0

This release adds support for Linux ARM (armv7l and armv8l 32 bit mode).
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "ptex"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
authors = [
"John Sirois <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ distribution is ~28M:
## Building `ptex`

The `ptex` binary is [released](https://github.com/a-scie/ptex/releases) for Linux (x86_64,
aarch64 & armv7l), macOS (x86_64 & aarch64) and Windows (x86_64 & aarch64). If you'd like to build
your own copy, you'll need [Rust installed](https://rustup.rs/) at which point you can run
aarch64, armv7l & s390x), macOS (x86_64 & aarch64) and Windows (x86_64 & aarch64). If you'd like tox
build your own copy, you'll need [Rust installed](https://rustup.rs/) at which point you can run
`cargo run -p package` and a binary for your current machine will be built in `dist/` along with a
sha256 checksum file. For more build options, you can run `cargo run -p package -- --help`. On some
systems, builds will require `cmake`, `make` and `perl` in order to build various `*-sys` crates.
Expand Down

0 comments on commit d245f6b

Please sign in to comment.