Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI #92

Merged
merged 4 commits into from
Mar 20, 2025
Merged

CI #92

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
20 changes: 14 additions & 6 deletions .github/workflows/build_vsharp.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,39 @@
name: 'Build VSharp'

on:
workflow_call
[workflow_call, pull_request, push]

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.x'

- name: Checkout VSharp
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: false
- uses: actions/cache@v3

- uses: actions/cache@v4
id: nuget-cache
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.fsproj') }}
restore-keys: |
${{ runner.os }}-nuget-

- name: Build VSharp
run:
dotnet build -c DebugTailRec
- uses: actions/upload-artifact@v3
dotnet build -c Release

- uses: actions/upload-artifact@v4
with:
name: runner
path: ./VSharp.Runner/bin/DebugTailRec/net7.0
- uses: actions/upload-artifact@v3

- uses: actions/upload-artifact@v4
with:
name: test_runner
path: ./VSharp.TestRunner/bin/DebugTailRec/net7.0
Loading