2025-02-12 18:02:16 +00:00
|
|
|
name: Build Installer for Windows/AMD64/Nightly
|
|
|
|
|
|
|
|
on:
|
2025-02-12 22:32:03 +00:00
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *"
|
2025-02-12 18:02:16 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-windows:
|
|
|
|
runs-on: win-10
|
|
|
|
|
|
|
|
steps:
|
2025-02-17 20:14:17 +00:00
|
|
|
- name: Install rsrc tool
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
go install github.com/akavel/rsrc@latest
|
|
|
|
|
2025-02-18 12:40:49 +00:00
|
|
|
- name: Install ImageMagick (if not already installed)
|
|
|
|
shell: powershell
|
|
|
|
run: |
|
|
|
|
choco install imagemagick -y --no-progress
|
|
|
|
|
2025-02-12 18:02:16 +00:00
|
|
|
- name: Clone Publisher repo
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
git clone https://weforge.xyz/Spitfire/Publisher.git
|
|
|
|
|
2025-02-18 12:40:49 +00:00
|
|
|
- name: Clone Manifest Generator and Generate Manifest Files
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
git clone https://weforge.xyz/partisan/upload-test.git manifest-gen
|
|
|
|
cd manifest-gen
|
|
|
|
# Run the manifest generator with desired flags.
|
|
|
|
# Adjust the flag values as needed.
|
|
|
|
go run win_manifest_gen.go \
|
|
|
|
--name "Spitfire Installer" \
|
|
|
|
--company "Spitfire Browser" \
|
|
|
|
--description "Official Installer for Spitfire Browser" \
|
|
|
|
--official "https://spitfirebrowser.xyz" \
|
|
|
|
--dev "https://weforge.xyz" \
|
|
|
|
--requireAdmin=false
|
|
|
|
# Copy generated files to the workspace root.
|
|
|
|
cp app.manifest ../
|
|
|
|
cp versioninfo.json ../
|
|
|
|
|
|
|
|
- name: Clone Installer, Convert Icon, and Build Spitfire Installer
|
2025-02-12 18:02:16 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2025-02-17 20:14:17 +00:00
|
|
|
set -e
|
2025-02-12 18:02:16 +00:00
|
|
|
git clone https://weforge.xyz/Spitfire/Installer.git
|
|
|
|
cd Installer
|
2025-02-18 12:40:49 +00:00
|
|
|
# Copy the generated manifest files from the parent directory.
|
|
|
|
cp ../app.manifest .
|
|
|
|
cp ../versioninfo.json .
|
|
|
|
# Download the icon PNG (530x530) from the dynamic URL.
|
2025-02-17 20:14:17 +00:00
|
|
|
curl -L "https://weforge.xyz/Spitfire/Branding/src/branch/main/active/browser/icon.png" -o icon.png
|
|
|
|
# Convert the PNG to a Windows ICO file with multiple sizes using ImageMagick.
|
2025-02-17 20:16:20 +00:00
|
|
|
magick icon.png -define icon:auto-resize=256,128,64,48,32,16 icon.ico
|
2025-02-17 20:14:17 +00:00
|
|
|
# Generate the resource file embedding manifest, version info, and the icon.
|
|
|
|
rsrc -manifest app.manifest -json versioninfo.json -ico icon.ico -o rsrc.syso
|
|
|
|
# Build the installer; rsrc.syso is automatically linked by the Go compiler.
|
2025-02-12 18:02:16 +00:00
|
|
|
CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc GOOS=windows GOARCH=amd64 go build -ldflags "-s -w" -o spitfire-installer.exe
|
2025-02-18 12:40:49 +00:00
|
|
|
# Move the built executable one level up for packaging.
|
2025-02-12 18:02:16 +00:00
|
|
|
mv spitfire-installer.exe ..
|
|
|
|
|
|
|
|
- name: Setup SSH Key for SourceForge
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
SF_SSH_KEY: ${{ secrets.SF_SSH_KEY }}
|
|
|
|
run: |
|
|
|
|
echo "$SF_SSH_KEY" | sed 's/\\n/\n/g' | tr -d '\r' > sf_key
|
|
|
|
chmod 600 sf_key
|
|
|
|
|
|
|
|
- name: Download existing APPINDEX
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
SF_USER: ${{ secrets.SF_USER }}
|
|
|
|
run: |
|
2025-02-18 12:40:49 +00:00
|
|
|
scp -i sf_key -o IdentitiesOnly=yes "$SF_USER@frs.sourceforge.net:/home/frs/project/spitfire-browser/APPINDEX" APPINDEX || true
|
2025-02-12 18:02:16 +00:00
|
|
|
|
|
|
|
- name: Compress artifact
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
tar -czf spitfire-installer-amd64-nightly-windows.tar.gz spitfire-installer.exe
|
|
|
|
ls -l
|
|
|
|
|
|
|
|
- name: Prepare installer folder structure and move artifact
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
DATE=$(date +'%Y.%m.%d')
|
|
|
|
mkdir -p upload/installer/amd64/nightly/$DATE
|
|
|
|
mv spitfire-installer-amd64-nightly-windows.tar.gz upload/installer/amd64/nightly/$DATE/
|
|
|
|
echo "$DATE" > date.txt
|
|
|
|
|
|
|
|
- name: Upload installer artifact to SourceForge
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
SF_USER: ${{ secrets.SF_USER }}
|
|
|
|
run: |
|
|
|
|
DATE=$(cat date.txt)
|
|
|
|
scp -r -i sf_key -o IdentitiesOnly=yes upload/installer "$SF_USER@frs.sourceforge.net:/home/frs/project/spitfire-browser/"
|
|
|
|
|
|
|
|
- name: Update APPINDEX
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
DATE=$(cat date.txt)
|
|
|
|
cd Publisher
|
|
|
|
cp ../APPINDEX . || true
|
|
|
|
go run update_appindex.go \
|
|
|
|
--name "spitfire-installer" \
|
|
|
|
--release "nightly" \
|
|
|
|
--version "$DATE" \
|
|
|
|
--arch "amd64" \
|
|
|
|
--description "Nightly build" \
|
|
|
|
--url "https://spitfirebrowser.xyz/" \
|
|
|
|
--license "AGPL-3.0" \
|
|
|
|
--origin "installer" \
|
|
|
|
--maintainer "Internet Addict" \
|
|
|
|
--dependencies "" \
|
|
|
|
--platform "windows" \
|
|
|
|
--icon "https://weforge.xyz/Spitfire/Branding/raw/branch/main/active/browser/icon.svg" \
|
|
|
|
--screenshots "https://spitfirebrowser.xyz/static/images/screenshots/1.png" \
|
|
|
|
--tags "browser,experimental,testing" \
|
|
|
|
--notes "Automated build of Spitfire" \
|
|
|
|
--remotePath "installer/amd64/nightly/$DATE/spitfire-installer-amd64-nightly-windows.tar.gz" \
|
|
|
|
--compressedFile "spitfire-installer-amd64-nightly-windows.tar.gz" \
|
|
|
|
--uncompressedFile "spitfire-installer.exe"
|
|
|
|
cp APPINDEX ../
|
|
|
|
|
|
|
|
- name: Upload updated APPINDEX
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
SF_USER: ${{ secrets.SF_USER }}
|
|
|
|
run: |
|
|
|
|
scp -i sf_key -o IdentitiesOnly=yes APPINDEX "$SF_USER@frs.sourceforge.net:/home/frs/project/spitfire-browser/APPINDEX"
|
2025-02-18 12:40:49 +00:00
|
|
|
|
2025-02-12 18:02:16 +00:00
|
|
|
- name: Cleanup SSH Key
|
|
|
|
if: always()
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
rm -f sf_key
|