This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
Add a thing #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 01 Build and test Rockstar engine | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up .NET 8 SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' | |
include-prerelease: true | |
- name: Install .NET WASM workloads | |
working-directory: ./Starship | |
run: dotnet workload restore | |
- name: Build Rockstar | |
run: dotnet build Starship --configuration Release | |
- name: Test Rockstar | |
run: dotnet test Starship | |
- name: Publish WASM engine | |
run: dotnet publish Starship/Rockstar.Wasm -o rockstar_wasm -c Release | |
- name: Publish Rockstar Linux binary | |
run: dotnet publish Starship/Rockstar -o rockstar_linux_binary -c Release | |
- name: Upload WASM engine | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rockstar_wasm | |
path: | | |
rockstar_wasm/wwwroot/_framework | |
- name: Upload WASM engine | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rockstar_linux_binary | |
path: | | |
rockstar_linux_binary | |