1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-07-18 18:48:28 +02:00

Add steam depot config

This commit is contained in:
Elias Steurer 2021-08-14 14:34:55 +02:00
parent a8b4f15fea
commit 79e3c39721
7 changed files with 85 additions and 0 deletions

1
.gitignore vendored
View File

@ -91,3 +91,4 @@ _deps
.cmake/**
/Common/ffmpeg/*
/Docs/html/screenplay.index
/ContentBuilder/**

View File

@ -0,0 +1,15 @@
"appbuild"
{
"appid" "672870"
"desc" "CI Build linux"
"buildoutput" "../../ContentBuilder/output" // build output folder for .log, .csm & .csd files, relative to location of this file
"contentroot" "../../" // root content folder, relative to location of this file
"setlive" "internal" // branch to set live after successful build, none if empty
"preview" "0" // to enable preview builds
"nobaseline" "0" // build without using baseline manifest
"depots"
{
"672873" "depot_build_linux.vdf"
}
}

View File

@ -0,0 +1,15 @@
"appbuild"
{
"appid" "672870"
"desc" "CI Build mac"
"buildoutput" "../../ContentBuilder/output" // build output folder for .log, .csm & .csd files, relative to location of this file
"contentroot" "../../" // root content folder, relative to location of this file
"setlive" "internal" // branch to set live after successful build, none if empty
"preview" "0" // to enable preview builds
"nobaseline" "0" // build without using baseline manifest
"depots"
{
"672872" "depot_build_mac.vdf"
}
}

View File

@ -0,0 +1,15 @@
"appbuild"
{
"appid" "672870"
"desc" "CI Build Windows"
"buildoutput" "../../ContentBuilder/output" // build output folder for .log, .csm & .csd files, relative to location of this file
"contentroot" "../../" // root content folder, relative to location of this file
"setlive" "internal" // branch to set live after successful build, none if empty
"preview" "0" // to enable preview builds
"nobaseline" "0" // build without using baseline manifest
"depots"
{
"672871" "depot_build_windows.vdf"
}
}

View File

@ -0,0 +1,13 @@
"DepotBuildConfig"
{
"DepotID" "672873"
// include all files recursively
"FileMapping"
{
"LocalPath" "build-x64-linux-release/bin/*"
"DepotPath" "."
"recursive" "1"
}
}

View File

@ -0,0 +1,13 @@
"DepotBuildConfig"
{
"DepotID" "672872"
// include all files recursively
"FileMapping"
{
"LocalPath" "build-x64-osx-release/bin/*"
"DepotPath" "."
"recursive" "1"
}
}

View File

@ -0,0 +1,13 @@
"DepotBuildConfig"
{
"DepotID" "672871"
// include all files recursively
"FileMapping"
{
"LocalPath" "build-x64-windows-release/bin/*"
"DepotPath" "."
"recursive" "1"
}
}