Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .deployment.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
target_dirs = [
"../inexor-rgf/plugins/deploy"
"/home/aschaeffer/RustroverProjects/reactive-graph/plugins/deploy"
]
39 changes: 32 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,59 +73,79 @@ jobs:
strategy:
fail-fast: false
matrix:
build_tool: [ "" ]
include:
# Tier 1
# ARM64 Linux (kernel 4.1, glibc 2.17+)
- target: aarch64-unknown-linux-gnu
os: ubuntu-22.04-arm
build_tool: cargo
include-files: |
target/release/libreactive_graph_tooling_graphql_client.so,
target/release/libreactive_graph_tooling_graphql_schema_visualization.so
# ARM64 macOS (11.0+, Big Sur+)
- target: aarch64-apple-darwin
os: macos-latest
build_tool: cargo
# 32-bit Linux (kernel 3.2+, glibc 2.17+) 1
- target: i686-unknown-linux-gnu
os: ubuntu-22.04
build_tool: cross
include-files: |
target/release/libreactive_graph_tooling_graphql_client.so,
target/release/libreactive_graph_tooling_graphql_schema_visualization.so
# 64-bit macOS (10.12+, Sierra+)
- target: x86_64-apple-darwin
os: macos-latest
build_tool: cross
# 64-bit MinGW (Windows 10+, Windows Server 2016+)
- target: x86_64-pc-windows-gnu
os: ubuntu-22.04
build_tool: cross
# 64-bit MSVC (Windows 10+, Windows Server 2016+)
- target: x86_64-pc-windows-msvc
os: windows-latest
build_tool: cargo
# 64-bit Linux (kernel 3.2+, glibc 2.17+)
- target: x86_64-unknown-linux-gnu
os: ubuntu-22.04
build_tool: cargo
# Universal macOS binary is supported as universal-apple-darwin.
- target: universal-apple-darwin
os: macos-latest
build_tool: cargo
# Tier 2
# ARM64 Linux with musl 1.2.3
- target: aarch64-unknown-linux-musl
os: ubuntu-24.04-arm
build_tool: cargo
build_tool: cross
# Armv7-A Linux, hardfloat (kernel 3.2, glibc 2.17)
- target: armv7-unknown-linux-gnueabihf
os: ubuntu-24.04-arm
build_tool: cross
# Armv7-A Linux with musl 1.2.3, hardfloat
- target: armv7-unknown-linux-musleabihf
os: ubuntu-24.04-arm
build_tool: cross
# 64-bit Linux with musl 1.2.3
- target: x86_64-unknown-linux-musl
os: ubuntu-22.04
build_tool: cross
# PowerPC Linux (kernel 3.2, glibc 2.17)
- target: powerpc-unknown-linux-gnu
os: ubuntu-22.04
build_tool: cross
# PPC64 Linux (kernel 3.2, glibc 2.17)
- target: powerpc64-unknown-linux-gnu
os: ubuntu-22.04
build_tool: cross
# PPC64LE Linux (kernel 3.10, glibc 2.17)
- target: powerpc64le-unknown-linux-gnu
os: ubuntu-24.04
build_tool: cross
# RISC-V Linux (kernel 4.20, glibc 2.29)
- target: riscv64gc-unknown-linux-gnu
os: ubuntu-22.04
build_tool: cross
runs-on: ${{ matrix.os }}
steps:
- name: VCS Checkout
Expand Down Expand Up @@ -235,19 +255,24 @@ jobs:
- name: Upload Nightly Binary
uses: taiki-e/upload-rust-binary-action@v1
with:
bin: |
libreactive_graph_tooling_graphql_client,
libreactive_graph_tooling_graphql_schema_visualization
bin: error
target: ${{ matrix.target }}
build-tool: ${{ matrix.build_tool }}
archive: 'reactive-graph-tooling-nightly-$target'
include: LICENSE.md,README.md,CHANGELOG.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,SECURITY.md
include: |
${{ matrix.include-files }}
LICENSE.md,
README.md,
CHANGELOG.md,
CODE_OF_CONDUCT.md,
CONTRIBUTING.md,
SECURITY.md,
tar: unix
zip: windows
leading_dir: true
token: ${{ secrets.GITHUB_TOKEN }}
ref: refs/tags/nightly
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' || github.ref == 'refs/tags/nightly'
debian-package:
name: Publish debian package
strategy:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Infrastructure

- Build System: Refactored plugin deployment
- CI: Synchronize labels from config file
- CI: Publish binary packages and debian packages
52 changes: 21 additions & 31 deletions Cargo.lock

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

Loading
Loading