Skip to content

fixed indexes again #72

fixed indexes again

fixed indexes again #72

Workflow file for this run

name: 'Build VSharp'
on:
[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@v4
with:
submodules: false
- 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 Release
- uses: actions/upload-artifact@v4
with:
name: runner
path: ./VSharp.Runner/bin/DebugTailRec/net7.0
- uses: actions/upload-artifact@v4
with:
name: test_runner
path: ./VSharp.TestRunner/bin/DebugTailRec/net7.0