dfhack/.github/workflows/steam.yml

139 lines
4.3 KiB
YAML

2023-03-07 18:13:41 -07:00
name: Deploy to Steam
on:
workflow_dispatch:
inputs:
ref:
description: Branch or commit hash
2023-03-07 18:13:41 -07:00
type: string
required: true
default: develop
2023-03-07 18:13:41 -07:00
version:
description: Version or build description
2023-03-07 18:13:41 -07:00
type: string
required: true
release_channel:
description: Release channel
type: string
required: true
default: staging
2023-03-07 18:13:41 -07:00
jobs:
deploy-to-steam:
name: Deploy to Steam
runs-on: ubuntu-22.04
steps:
2023-07-22 23:54:21 -06:00
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: 3
2023-04-30 00:31:44 -06:00
- name: Install dependencies
run: |
sudo apt-get update
2023-07-22 23:54:21 -06:00
sudo apt-get install \
ccache \
gcc-10 \
g++-10 \
2023-07-23 12:06:48 -06:00
libgl-dev \
2023-07-28 00:19:16 -06:00
libxml-libxslt-perl \
2023-07-23 02:46:33 -06:00
ninja-build
2023-07-22 23:54:21 -06:00
pip install 'sphinx<4.4.0'
2023-03-07 18:13:41 -07:00
- name: Clone DFHack
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
ref: ${{ github.event.inputs.ref }}
2023-05-18 15:06:00 -06:00
- name: Get 3rd party SDKs
uses: actions/checkout@v3
with:
repository: DFHack/3rdparty
ref: main
ssh-key: ${{ secrets.DFHACK_3RDPARTY_TOKEN }}
path: depends/steam
2023-07-22 23:54:21 -06:00
- name: Fetch linux64 ccache
uses: actions/cache@v3
with:
path: ~/.ccache
key: ccache-ubuntu-22.04-gcc-10-${{ github.sha }}
2023-07-22 23:54:21 -06:00
restore-keys: |
ccache-ubuntu-22.04-gcc-10
2023-07-22 23:54:21 -06:00
- name: Fetch win64 ccache
2023-03-07 18:13:41 -07:00
uses: actions/cache@v3
with:
path: build/win64-cross/ccache
key: ccache-win64-cross-msvc-${{ github.sha }}
2023-03-07 18:13:41 -07:00
restore-keys: |
ccache-win64-cross-msvc
2023-07-22 23:54:21 -06:00
- name: Set up environment
id: env_setup
run: |
echo "CCACHE_DIR=${HOME}/.ccache" >> $GITHUB_ENV
- name: Configure DFHack (common files)
run: |
cmake \
-S . \
-B build \
-G Ninja \
-DDFHACK_BUILD_ARCH=64 \
-DBUILD_LIBRARY:BOOL=0 \
-DBUILD_BINARIES:BOOL=0 \
-DBUILD_DOCS:BOOL=1 \
-DCMAKE_INSTALL_PREFIX=build/common-output
- name: Build DFHack (common files)
run: |
ninja -C build install
- name: Configure DFHack (linux build)
env:
CC: gcc-10
CXX: g++-10
2023-07-22 23:54:21 -06:00
run: |
cmake \
-S . \
-B build \
-G Ninja \
-DDFHACK_BUILD_ARCH=64 \
-DBUILD_STONESENSE:BOOL=1 \
2023-07-22 23:54:21 -06:00
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DBUILD_LIBRARY:BOOL=1 \
-DBUILD_BINARIES:BOOL=1 \
-DBUILD_DOCS:BOOL=0 \
-DINSTALL_SCRIPTS:BOOL=0 \
-DINSTALL_DATA_FILES:BOOL=0 \
-DCMAKE_INSTALL_PREFIX=build/linux-output
- name: Build DFHack (linux build)
2023-07-22 23:54:21 -06:00
run: |
ninja -C build install
ccache --max-size 50M
ccache --cleanup
ccache --show-stats
2023-03-07 18:13:41 -07:00
- name: Cross-compile win64 artifacts
env:
CMAKE_EXTRA_ARGS: '-DBUILD_STONESENSE:BOOL=1 -DBUILD_DFLAUNCH:BOOL=1 -DBUILD_DOCS:BOOL=0 -DINSTALL_SCRIPTS:BOOL=0 -DINSTALL_DATA_FILES:BOOL=0'
2023-04-18 20:52:57 -06:00
steam_username: ${{ secrets.STEAM_SDK_USERNAME }}
steam_password: ${{ secrets.STEAM_SDK_PASSWORD }}
2023-03-07 18:13:41 -07:00
run: |
echo "ref: ${{ github.event.inputs.ref }}"
echo "sha: ${{ github.sha }}"
2023-04-26 14:36:40 -06:00
echo "version: ${{ github.event.inputs.version }}"
echo "release_channel: ${{ github.event.inputs.release_channel }}"
echo
2023-03-07 18:13:41 -07:00
cd build
bash -x build-win64-from-linux.sh
ccache -d win64-cross/ccache --max-size 200M
ccache -d win64-cross/ccache --cleanup
ccache -d win64-cross/ccache --show-stats
2023-03-07 18:13:41 -07:00
- name: Steam deploy
2023-07-17 14:46:54 -06:00
uses: game-ci/steam-deploy@v3
2023-03-07 18:13:41 -07:00
with:
username: ${{ secrets.STEAM_USERNAME }}
configVdf: ${{ secrets.STEAM_CONFIG_VDF}}
appId: 2346660
buildDescription: ${{ github.event.inputs.version }}
2023-03-07 18:34:44 -07:00
rootPath: build
depot1Path: common-output
depot2Path: win64-cross/output
depot3Path: linux-output
2023-03-07 18:13:41 -07:00
releaseBranch: ${{ github.event.inputs.release_channel }}