Merge pull request #49 from geissomatik/dependabot/github_actions/act… #259
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 is part of: Geiss screensaver and Winamp music visualization plug-in | |
# ___ ___ ___ ___ ___ | |
# / __| __|_ _/ __/ __| | |
# | (_ | _| | |\__ \__ \ | |
# \___|___|___|___/___/ | |
# 3-Clause BSD License | |
# | |
# Copyright (c) 2022-2022 Sebastian Pipping <sebastian@pipping.org> | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright notice, this | |
# list of conditions and the following disclaimer. | |
# | |
# 2. Redistributions in binary form must reproduce the above copyright notice, | |
# this list of conditions and the following disclaimer in the documentation | |
# and/or other materials provided with the distribution. | |
# | |
# 3. Neither the name of the copyright holder nor the names of its | |
# contributors may be used to endorse or promote products derived from | |
# this software without specific prior written permission. | |
# | |
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | |
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
# | |
name: Build for Windows using MSVC | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: '0 2 * * 5' # Every Friday at 2am | |
jobs: | |
checks: | |
name: Build for 32bit x86 Windows using MSVC | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Configure build | |
run: |- | |
cmake -G "Visual Studio 17 2022" -A Win32 -DCMAKE_BUILD_TYPE=RelWithDebInfo . | |
- name: Build both plug-in and screensaver | |
run: |- | |
cmake --build . | |
- name: Build plug-in installer + prepare artifacts for upload | |
shell: bash | |
run: |- | |
set -x | |
find . -name .git -prune -o -type f | sort -f | |
cp -v */geiss_scr.exe bin_saver/geiss.scr # for upload | |
cp -v */vis_geis.dll bin_plugin/ # for upload and installer | |
./makensis_198 installer_PLUGIN.nsi # writes to bin_plugin/ | |
find bin_*/ -type f | sort -f | |
mv bin_plugin/geiss4winamp_430.exe ./ # i.e. out of bin_plugin/ | |
- name: Upload screensaver binary | |
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1 | |
with: | |
name: "geiss_saver_430_${{ github.sha }}" | |
path: "bin_saver/*" | |
if-no-files-found: error | |
- name: Upload plug-in binary | |
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1 | |
with: | |
name: "geiss4winamp_430_${{ github.sha }}" | |
path: "bin_plugin/*" | |
if-no-files-found: error | |
- name: Upload plug-in installer | |
uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 # v4.4.1 | |
with: | |
name: "geiss4winamp_430_installer_${{ github.sha }}" | |
path: "geiss4winamp_430.exe" | |
if-no-files-found: error |