-
Notifications
You must be signed in to change notification settings - Fork 1
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
6 changed files
with
181 additions
and
55 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 |
---|---|---|
@@ -1,52 +1,56 @@ | ||
name: CI | ||
|
||
on: [push] | ||
# Trigger the action on push to master | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
env: | ||
ResonitePath: "${{ github.workspace }}/Resonite" | ||
# Sets permissions of the GITHUB_TOKEN to allow reading packages and writing to GH pages | ||
permissions: | ||
actions: read | ||
pages: write | ||
id-token: write | ||
packages: read | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "ci" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
ci: | ||
publish-docs: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get Resonite Infos | ||
run: | | ||
{ | ||
echo "APP_INFO<<EOFEOF" | ||
curl https://api.steamcmd.net/v1/info/2519830 | ||
echo "" | ||
echo "EOFEOF" | ||
} >> "$GITHUB_ENV" | ||
- name: Get Resonite from Cache | ||
id: cache-resonite | ||
uses: actions/cache@v3 | ||
with: | ||
path: "${{ env.ResonitePath }}" | ||
key: "${{ fromJson( env.APP_INFO ).data['2519830'].depots.branches.public.buildid }}" | ||
- name: Download Steam | ||
if: steps.cache-resonite.outputs.cache-hit != 'true' | ||
uses: CyberAndrii/setup-steamcmd@b786e0da44db3d817e66fa3910a9560cb28c9323 | ||
- name: Download Resonite | ||
if: steps.cache-resonite.outputs.cache-hit != 'true' | ||
run: | | ||
steamcmd '+@sSteamCmdForcePlatformType windows' '+force_install_dir "${{ env.ResonitePath }}"' '+login "${{ secrets.STEAM_USER }}" "${{ secrets.STEAM_TOKEN }}"' '+app_license_request 2519830' '+app_update 2519830 validate' '+quit' | ||
#The following line makes the cache much much smaller: | ||
rm -r '${{ env.ResonitePath }}/RuntimeData/PreCache' | ||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: '6.x' | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} | ||
restore-keys: | | ||
${{ runner.os }}-nuget | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build | ||
- name: Test | ||
run: dotnet test | ||
# Setup environment | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Dotnet Setup | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 8.x | ||
source-url: https://nuget.pkg.github.com/MonkeyModdingTroop/index.json | ||
env: | ||
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Cache NuGet packages | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} | ||
restore-keys: | | ||
${{ runner.os }}-nuget | ||
# Build and test projects | ||
- name: Install dependencies | ||
run: dotnet restore | ||
|
||
- name: Build | ||
run: dotnet build | ||
|
||
- name: Test | ||
run: dotnet test |
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
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