Skip to content

Commit

Permalink
Initial Version
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Jun 22, 2024
1 parent 87ef72e commit 18afeef
Show file tree
Hide file tree
Showing 4 changed files with 199 additions and 749 deletions.
315 changes: 0 additions & 315 deletions .github/workflows/test-build-workflow.yml

This file was deleted.

72 changes: 72 additions & 0 deletions .github/workflows/test-publish-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Test Publish Action

on:
push:
tags: [ 'v1', 'v1-test' ]
pull_request:
branches: [ main ]

jobs:

build_artifacts:
runs-on: ubuntu-latest
steps:
- name: Checkout prs-rs Repository
uses: actions/checkout@v4
with:
repository: Sewer56/prs-rs
ref: d08599ed5473616f57d57a0966939e1a5dbda9b4

- name: Build Rust C Library
uses: Reloaded-Project/devops-rust-lightweight-binary@v1
with:
crate-name: prs-rs
target: x86_64-unknown-linux-gnu
use-pgo: false
use-cross: false
features: "c-exports"
build-library: true
upload-artifacts: true

- name: Build .NET Library
uses: Reloaded-Project/devops-rust-c-library-to-dotnet@v1
with:
csharp-project-path: bindings/csharp

test_publish_action:
needs: build_artifacts
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
path: artifacts

- name: Checkout prs-rs Repository
uses: actions/checkout@v4
with:
repository: Sewer56/prs-rs
ref: d08599ed5473616f57d57a0966939e1a5dbda9b4

- name: Test Publish Action
uses: Reloaded-Project/devops-publish-action@v1-test
with:
crates-io-token: ${{ secrets.CRATES_IO_TOKEN }}
additional-publish-params: --dry-run
create-release: false

- name: Verify NuGet packages
run: |
if ls artifacts/**/*.nupkg 1> /dev/null 2>&1; then
echo "NuGet packages found"
else
echo "No NuGet packages found"
exit 1
fi
if ls artifacts/**/*.snupkg 1> /dev/null 2>&1; then
echo "NuGet symbol packages found"
else
echo "No NuGet symbol packages found"
exit 1
fi
Loading

0 comments on commit 18afeef

Please sign in to comment.