Skip to content

Commit

Permalink
/testing
Browse files Browse the repository at this point in the history
Signed-off-by: Georgi Georgiev <georgi.getz@outlook.com>
  • Loading branch information
georg-getz committed Jun 3, 2024
1 parent c8223ff commit ca6e8c5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/dynamic_libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,29 @@ on: [push]
jobs:
publish_dlibs:
name: Publish the dynamic libraries
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- os_name: macos
os: macos-latest
target: aarch64-apple-darwin

- os_name: Linux-x86_64
os: ubuntu-latest
target: x86_64-unknown-linux-gnu

- os_name: Windows
os: windows-latest
target: x86_64-pc-windows-msvc

- os_name: macOS-x86_64
os: macos-latest
target: x86_64-apple-darwin

runs-on: ${{ matrix.platform.os }}
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Rust
uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac_release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Release

on: [push]
on: []

jobs:
publish_jar:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Release

on: [push]
on: []

jobs:
publish_jar:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build and Test

on: [push]
on: []

jobs:
# The `test` job.
Expand Down

0 comments on commit ca6e8c5

Please sign in to comment.