Skip to content

Commit

Permalink
Major refactoring of nightly builds GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SNMetamorph committed Sep 4, 2024
1 parent 631abff commit 1839b67
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 40 deletions.
56 changes: 39 additions & 17 deletions .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
- os: windows-latest
cmake_preset: ci-windows-x86
build_conf: Debug
devenv_arch: amd64_x86

env:
# Indicates the location of the vcpkg as a Git submodule of the project repository.
Expand Down Expand Up @@ -40,6 +41,14 @@ jobs:
# We'll use this as our working directory for all subsequent commands
run: cmake -E make_directory ${{github.workspace}}/build

- uses: ilammy/[email protected]
if: runner.os == 'Windows'
with:
arch: ${{ matrix.devenv_arch }}

- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v4

- name: "Create directory '${{ env.VCPKG_DEFAULT_BINARY_CACHE }}'"
shell: bash
run: mkdir -p $VCPKG_DEFAULT_BINARY_CACHE
Expand All @@ -63,33 +72,37 @@ jobs:
${{ hashFiles( '.git/modules/external/vcpkg/HEAD' )}}
- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{github.workspace}}/build
working-directory: ${{ github.workspace }}/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake $GITHUB_WORKSPACE --preset ${{ matrix.cmake_preset }} -DCMAKE_BUILD_TYPE=${{ matrix.build_conf }}
run: cmake "${{ github.workspace }}" --preset ${{ matrix.cmake_preset }}

- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build . --config ${{ matrix.build_conf }}
run: cmake --build . --parallel 4

- name: Prepare artifacts
shell: bash
run: |
ls -l build/
mkdir publish/
mkdir artifacts/
cp build/${{ matrix.build_conf }}/bin/gsm-library.dll publish/gsm-library.dll
cp build/${{ matrix.build_conf }}/bin/gsm-loader.exe publish/gsm-loader.exe
cp -r resources/program_dir/* publish
# we forced to do this split because Git on Windows can't use zip, bruh
- name: Pack artifact files to archive (Windows)
if: runner.os == 'Windows'
run: |
mkdir publish\
move build\${{matrix.build_conf}}\bin\gsm-library.dll publish\gsm-library.dll
move build\${{matrix.build_conf}}\bin\gsm-loader.exe publish\gsm-loader.exe
move resources\program_dir\*.* publish\
Compress-Archive -Path publish\* -Destination artifacts\goldsrc-monitor_${{ matrix.cmake_preset }}.zip
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Windows
path: |
publish/*
name: artifact-${{ matrix.cmake_preset }}
path: artifacts/*

release:
name: release-builds
Expand All @@ -99,6 +112,8 @@ jobs:
steps:
- name: Fetch artifacts
uses: actions/[email protected]
with:
path: artifacts/

- name: Remove old release
uses: dev-drprasad/[email protected]
Expand All @@ -109,16 +124,23 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Repackage binaries and allow GitHub to process removed release for few seconds
shell: bash
continue-on-error: true
run: |
cd Windows
zip -r ../goldsrc-monitor-win32.zip *
cd artifacts/
for i in artifact-*; do
mv "$i"/* .
rm -rf "$i"
done
ls -R .
cd ../
sleep 20s
- name: Upload new release
uses: softprops/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: goldsrc-monitor*
files: artifacts/*
tag_name: continuous
draft: false
prerelease: true
Expand Down
27 changes: 4 additions & 23 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"configurePresets": [
{
"name": "windows-x86-debug",
"displayName": "Windows x86 Debug",
"displayName": "Windows / x86 / Debug",
"description": " ",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
Expand All @@ -19,7 +19,7 @@
},
{
"name": "windows-x86-release",
"displayName": "Windows x86 Release",
"displayName": "Windows / x86 / Release",
"description": " ",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
Expand All @@ -35,7 +35,7 @@
},
{
"name": "windows-x64-debug",
"displayName": "Windows x64 Debug",
"displayName": "Windows / x64 / Debug",
"description": " ",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
Expand All @@ -51,7 +51,7 @@
},
{
"name": "windows-x64-release",
"displayName": "Windows x64 Release",
"displayName": "Windows / x64 / Release",
"description": " ",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
Expand All @@ -64,25 +64,6 @@
"VCPKG_TARGET_TRIPLET": "x64-windows-static"
},
"vendor": { "microsoft.com/VisualStudioSettings/CMake/1.0": { "hostOS": [ "Windows" ] } }
},
{
"name": "ci-windows-x86",
"displayName": "CI Windows x86",
"description": " ",
"generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/build",
"architecture": {
"value": "win32",
"strategy": "set"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x86-windows-static",
"EXTERNAL_VCPKG_TOOLCHAIN_FILE": {
"type": "FILEPATH",
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
}
},
"vendor": { "microsoft.com/VisualStudioSettings/CMake/1.0": { "hostOS": [ "Windows" ] } }
}
]
}

0 comments on commit 1839b67

Please sign in to comment.