Skip to content

Install dotnet7.

Install dotnet7. #3

Workflow file for this run

name: 'Build VSharp'
on:
[workflow_call, pull_request, push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Download & install necessary dependencies
run: |
apt-get update && apt-get install -y build-essential dotnet-sdk-7.0
- 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 DebugTailRec
- 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