Skip to content

Fix path to CI build #1

Fix path to CI build

Fix path to CI build #1

Workflow file for this run

name: Run Build and Package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
main:
runs-on: ${{ matrix.environment }}
strategy:
matrix:
environment:
- ubuntu-latest
fail-fast: false
env:
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages
steps:
- name: πŸ“ Fetch Sources πŸ“
uses: actions/checkout@v2
- name: πŸ›  Build Sdk πŸ› 
shell: bash
run: dotnet build -c Release src/sdk/FStarLang.Sdk.csproj
- name: πŸ›  Build Runtime win-x64 πŸ› 
shell: bash
run: dotnet build -r win-x64 -c Release src/runtime/FStarLang.Runtime.csproj
- name: πŸ›  Build Runtime linux-x64 πŸ› 
shell: bash
run: dotnet build -r linux-x64 -c Release src/runtime/FStarLang.Runtime.csproj
- name: πŸ›  Pack ProjectTemplates πŸ› 
shell: bash
run: dotnet pack -c Release src/templates/FStarLang.DotNet.Common.ProjectTemplates.1.0.csproj