Skip to content
This repository has been archived by the owner on Oct 12, 2024. It is now read-only.

Commit

Permalink
Add a thing
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanbeattie committed Jul 16, 2024
1 parent 18ac215 commit 0e9752e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 54 deletions.
104 changes: 52 additions & 52 deletions .github/workflows/01-build-and-test-rockstar-engine.yml
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
name: build-and-test-engine

on:
push:
branches: ["main"]
paths:
- 'Starship/**'
- '.github/workflows/**'
workflow_dispatch:
workflow_call:

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'

- 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 -c Release

- 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 Linux binary
# uses: actions/upload-artifact@v4
# with:
# name: rockstar_linux_binary
# path: |
# rockstar_linux_binary
# name: build-and-test-engine

# on:
# push:
# branches: ["main"]
# paths:
# - 'Starship/**'
# - '.github/workflows/**'
# workflow_dispatch:
# workflow_call:

# 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'

# - 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 -c Release

# - 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 Linux binary
# # uses: actions/upload-artifact@v4
# # with:
# # name: rockstar_linux_binary
# # path: |
# # rockstar_linux_binary


3 changes: 1 addition & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ jobs:
uses: actions/configure-pages@v5

- name: Build with Jekyll
working-directory: ./codewithrockstar.com
# Outputs to the './_site' directory by default
run: |
cd codewithrockstar.com
cd ./codewithrockstar.com
bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
Expand Down

0 comments on commit 0e9752e

Please sign in to comment.