Skip to content

Merge pull request #117 from Silverlan/develop #1213

Merge pull request #117 from Silverlan/develop

Merge pull request #117 from Silverlan/develop #1213

name: Build Windows
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: environment-win-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
env:
# See https://github.com/git-lfs/git-lfs/issues/5749
GIT_CLONE_PROTECTION_ACTIVE: 'false'
jobs:
build:
permissions:
actions: write
contents: write
issues: read
pull-requests: read
name: Build - ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- os: windows-latest
name: "Windows x64 MSVC"
steps:
- name: Setup Pragma
uses: Silverlan/pragma/github_actions/setup@main
with:
clone_url: "https://github.com/${{ github.repository }}.git"
# We need the latest Windows SDK
- uses: GuillaumeFalourd/setup-windows10-sdk-action@v1.11
with:
sdk-version: 22621
- name: Build Pragma
uses: ./pragma/github_actions/build
id: build-pragma
with:
build-args: "--with-pfm --with-all-pfm-modules --with-vr --with-networking --with-lua-debugger=0 --with-swiftshader"
- name: Create Release Archive
shell: bash
run: |
curDir="$PWD"
# Add info file
cd "${{ steps.build-pragma.outputs.install-dir }}"
echo -e "ref: $GITHUB_REF \ncommit: $GITHUB_SHA\nbuild: $(date +"%Y-%m-%dT%H:%M:%SZ")" \
> ./git_info.txt
# Delete .git folders
find . -name ".git*" -exec rm -R {} \; 2>/dev/null || true
# Enable experimental updates
cd cfg
echo "pfm_enable_experimental_updates \"1\"" >> client.cfg
cd "$curDir"
7z a pragma-win64.zip "${{ steps.build-pragma.outputs.install-dir }}/**"
- name: Generate nightly tag description
shell: bash
run: |
curDate=$(date -u '+%Y-%m-%d %H:%M:%S %Z')
printf "This is an auto-generated pre-release, built from the latest version of the source code.\nIt includes all files necessary to run Pragma, as well as the latest version of the Pragma Filmmaker, however functionality and stability are **not** guaranteed.\n\nLatest release date: $curDate" > tag_text.txt
- name: Update nightly tag description
uses: softprops/action-gh-release@v0.1.15
with:
body_path: tag_text.txt
tag_name: nightly
prerelease: true
- name: Update nightly release
uses: Silverlan/Releaser/releaser/composite@main
with:
tag: nightly
token: ${{ secrets.GITHUB_TOKEN }}
files: "pragma-win64.zip"
- name: Collect PDB files
uses: ./pragma/github_actions/collect_pdb_files
with:
source-directory: "${{ steps.build-pragma.outputs.build-dir }}"
target-directory: "${{ github.workspace }}/pdb"
- name: Create PDB Archive
shell: bash
run: |
curDir="$PWD"
# 7z expects a standard windows path
winPath=$(echo "$curDir" | sed -e 's/^\///' -e 's/\//\\/g' -e 's/^./\0:/')
7z a debug_pdb.zip "$winPath/pdb/**"
- name: Update PDB release
uses: Silverlan/Releaser/releaser/composite@main
with:
tag: nightly
token: ${{ secrets.GITHUB_TOKEN }}
files: "debug_pdb.zip"
- name: Run Tests
uses: benc-uk/workflow-dispatch@v1
with:
workflow: pragma-tests-ci.yml
inputs: '{ "os": "windows" }'
- name: Generate File Lists
shell: bash
if: always()
run: |
# Install tree command
choco install tree
curDir=$(pwd)
if [ -d "c:/pragma/build" ]; then
cd c:/pragma/build
tree --dirsfirst > "$curDir/files_pragma_build.txt"
cd "$curDir"
fi
if [ -d "c:/pragma/deps" ]; then
cd c:/pragma/deps
tree --dirsfirst > "$curDir/files_pragma_deps.txt"
cd "$curDir"
fi
if [ -d "c:/pragma/build/install" ]; then
cd c:/pragma/build/install
tree --dirsfirst > "$curDir/files_pragma_install.txt"
cd "$curDir"
fi
mkdir artifacts
cp -u "c:/pragma/build/CMakeCache.txt" artifacts/
cp -u "files_pragma_build.txt" artifacts/
cp -u "files_pragma_deps.txt" artifacts/
cp -u "files_pragma_install.txt" artifacts/
- name: Discord Notifcation
uses: benc-uk/workflow-dispatch@v1
if: ${{ github.repository == 'Silverlan/pragma' }}
with:
workflow: discord-notification.yml
inputs: '{ "webhook": "${{ secrets.PRAGMA_RELEASE_DISCORD_WEBHOOK }}", "message": "A new nightly pre-release build has been generated! It is available for download here:\n<https://github.com/Silverlan/pragma/releases/tag/nightly>\n\nThis is NOT a stable release, use with caution! Only use this version for testing!" }'
- name: Upload Artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: Artifacts
overwrite: true
path: "artifacts"
- name: Handle Error
uses: Silverlan/common_actions/action_handle_error@main
if: failure()