Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PySymGym/VSharp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ca948fdc7806c2c6ab512c1d17d6f1edf61a6f2d
Choose a base ref
..
head repository: PySymGym/VSharp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1f6e3f0545cf8933f86d65028e7e23b3768c49fe
Choose a head ref
Showing with 14 additions and 6 deletions.
  1. +14 −6 .github/workflows/build_vsharp.yml
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