CEF/Spotify Titlebar Enabler 0.5 #408
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
name: Mod compatibility check | |
defaults: | |
run: | |
shell: bash | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [ | |
# '1.3', # Same compiler as 1.3.1. | |
'1.3.1', | |
'1.4', | |
'1.4.1', | |
# '1.5', # Same compiler as 1.5.1. | |
'1.5.1', | |
] | |
exclude: | |
# Exclude 1.3.1, which is quite old, for everyone but m417z. | |
- version: ${{ github.event.pull_request.user.login != 'm417z' && '1.3.1' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install Python dependencies | |
run: python -m pip install pywin32 | |
- name: Cache Windhawk | |
id: cache-windhawk | |
uses: actions/cache@v4 | |
with: | |
path: ${{ runner.temp }}/windhawk | |
key: v1-${{ runner.os }}-${{ matrix.version }} | |
- name: Extract Windhawk | |
if: steps.cache-windhawk.outputs.cache-hit != 'true' | |
run: | | |
installer_url="https://github.com/ramensoftware/windhawk/releases/download/v${{ matrix.version }}/windhawk_setup.exe" | |
installer_path="${{ runner.temp }}/windhawk_setup.exe" | |
echo "Downloading $installer_url to $installer_path" | |
curl -L "$installer_url" -o "$installer_path" | |
extract_path="${{ runner.temp }}\windhawk" | |
echo "Extracting $installer_path to $extract_path" | |
MSYS_NO_PATHCONV=1 "$installer_path" /S /PORTABLE "/D=$extract_path" | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v44 | |
- name: Compile mod | |
env: | |
ADDED_FILES_COUNT: ${{ steps.changed-files.outputs.added_files_count }} | |
MODIFIED_FILES_COUNT: ${{ steps.changed-files.outputs.modified_files_count }} | |
ALL_CHANGED_AND_MODIFIED_FILES: ${{ steps.changed-files.outputs.all_changed_and_modified_files }} | |
ALL_CHANGED_AND_MODIFIED_FILES_COUNT: ${{ steps.changed-files.outputs.all_changed_and_modified_files_count }} | |
run: | | |
a=ADDED_FILES_COUNT | |
b=MODIFIED_FILES_COUNT | |
c=ALL_CHANGED_AND_MODIFIED_FILES_COUNT | |
if [[ ( ($a -eq 0 && $b -eq 1) || ($a -eq 1 && $b -eq 0) ) && $c -eq 1 ]]; then | |
echo "Compiling $ALL_CHANGED_AND_MODIFIED_FILES" | |
windhawk_path="${{ runner.temp }}\windhawk" | |
python -u scripts/compile_mod.py -w "$windhawk_path" -f "$ALL_CHANGED_AND_MODIFIED_FILES" -o32 "${{ runner.temp }}\mod_32.dll" -o64 "${{ runner.temp }}\mod_64.dll" | |
fi |