-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
148 additions
and
23 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
Provide the Debug-File you can generate with SMM. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Enter this Command or open this GUI... | ||
2. Click on this and that... | ||
3. Do this... | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
Like version number (for in-dev versions state the build number and the branch) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- dev | ||
paths: | ||
- "FicsItCam.uplugin" | ||
- "Content/**" | ||
- "Source/**" | ||
- "ThirdParty/**" | ||
pull_request: | ||
branches: | ||
- "master" | ||
- "development" | ||
paths: | ||
- "Content/**" | ||
- "Source/**" | ||
- "ThirdParty/**" | ||
workflow_dispatch: | ||
workflow_call: | ||
secrets: | ||
WWISE_EMAIL: | ||
required: true | ||
WWISE_PASSWORD: | ||
required: true | ||
GH_TOKEN: | ||
required: false | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Cleanup | ||
run: Remove-Item C:\workspace\SatisfactoryModLoader -Recurse -Force -Confirm:$false -ErrorAction Ignore | ||
|
||
- uses: actions/checkout@master | ||
with: | ||
repository: satisfactorymodding/SatisfactoryModLoader | ||
ref: refs/heads/dev | ||
path: SatisfactoryModLoader | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
path: Mods/FicsItCam | ||
|
||
- name: Add Wwise | ||
run: | | ||
gh release download --repo mircearoata/wwise-cli -p "wwise-cli.exe" | ||
./wwise-cli.exe download --sdk-version "2022.1.5.8242" --filter Packages=SDK --filter DeploymentPlatforms=Windows_vc140 --filter DeploymentPlatforms=Windows_vc150 --filter DeploymentPlatforms=Windows_vc160 --filter DeploymentPlatforms=Windows_vc170 --filter DeploymentPlatforms=Linux --filter DeploymentPlatforms= | ||
./wwise-cli.exe integrate-ue --integration-version "2022.1.5.2714" --project "C:\workspace\SatisfactoryModLoader\FactoryGame.uproject" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
WWISE_EMAIL: ${{ secrets.WWISE_EMAIL }} | ||
WWISE_PASSWORD: ${{ secrets.WWISE_PASSWORD }} | ||
|
||
- name: Add msbuild to PATH | ||
uses: microsoft/setup-msbuild@v1 | ||
|
||
- name: Generate VS project files | ||
run: C:\workspace\ue\Engine\Build\BatchFiles\Build.bat -projectfiles -project='C:\workspace\SatisfactoryModLoader\FactoryGame.uproject' -game -rocket -progres | ||
|
||
- name: Build for Development Editor | ||
run: MSBuild.exe 'C:\workspace\SatisfactoryModLoader\FactoryGame.sln' /p:Configuration='Development Editor' /p:Platform='Win64' /t:'Games\FactoryGame' -m | ||
|
||
- name: Build for Shipping/Client | ||
run: MSBuild.exe 'C:\workspace\SatisfactoryModLoader\FactoryGame.sln' /p:Configuration='Shipping' /p:Platform='Win64' /t:'Games\FactoryGame' -m | ||
|
||
- name: Package FicsItCam Mod | ||
run: C:\workspace\ue\Engine\Build\BatchFiles\RunUAT.bat -ScriptsForProject='C:\workspace\SatisfactoryModLoader\FactoryGame.uproject' PackagePlugin -project='C:\workspace\SatisfactoryModLoader\FactoryGame.uproject' -clientconfig=Shipping -serverconfig=Shipping -utf8output -DLCName='FicsItCam' -build -platform=Win64 -nocompileeditor | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: FicsItCam | ||
path: C:\workspace\SatisfactoryModLoader\Saved\ArchivedPlugins\FicsItCam\FicsItCam-Windows.zip |
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
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
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