Release #117
Workflow file for this run
This file contains hidden or 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: Release | |
# if the tag contains -test- the build is pushed into the build-test branch | |
# so skunkcrafts does not see it | |
# Controls when the workflow will run | |
on: | |
push: | |
# branches: [ main ] | |
tags: | |
- 'v*' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: >- | |
mingw-w64-x86_64-gcc | |
make | |
- uses: actions/checkout@v3 | |
- name: Build Windows binaries | |
shell: msys2 {0} | |
run: | | |
TAG=${GITHUB_REF##*/} | |
if [ ! -z "$TAG" ]; then | |
echo "VERSION=$TAG" > version.mak | |
fi | |
make -f Makefile.mgw64 | |
ls -lR ./build | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-windows | |
path: | | |
build/win.xpl | |
build-linux: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Linux binaries | |
shell: bash | |
run: | | |
set -x | |
sudo apt-get -y install libcurl4-openssl-dev libgl-dev libopengl-dev libopengl0 | |
find /usr/lib -type f -name '*GL.*' | |
TAG=${GITHUB_REF##*/} | |
if [ ! -z "$TAG" ]; then | |
echo "VERSION=$TAG" > version.mak | |
fi | |
make -f Makefile.lin64 | |
ls -lR ./build | |
- name: Upload Build Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-linux | |
path: | | |
build/lin.xpl | |
build: | |
# The type of runner that the job will run on | |
runs-on: macos-13 | |
needs: [build-windows, build-linux] | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- run: | | |
set -x | |
TAG=${GITHUB_REF##*/} | |
if [ ! -z "$TAG" ]; then | |
echo "VERSION=$TAG" > version.mak | |
fi | |
make -f Makefile.mac64 | |
- name: Download Build Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: ./download | |
- run: | | |
mkdir ./build/XA-snow | |
mv ./build/mac.xpl ./build/XA-snow/. | |
cp ./download/*/*.xpl ./build/XA-snow/. | |
ls -lR ./build/XA-snow | |
- run: | | |
cp -r bin ${{ github.workspace }}/build/XA-snow/ | |
TAG=${GITHUB_REF##*/} | |
cp ${{ github.workspace }}/skunkcrafts_updater.cfg ${{ github.workspace }}/build/XA-snow/ | |
cp ${{ github.workspace }}/skunkcrafts_updater_beta.cfg ${{ github.workspace }}/build/XA-snow/ | |
cp ${{ github.workspace }}/LICENSE* ${{ github.workspace }}/build/XA-snow/ | |
cp ${{ github.workspace }}/ESA-license.txt ${{ github.workspace }}/build/XA-snow/ | |
cp ${{ github.workspace }}/ESACCI-LC-L4-WB-Ocean-Map-150m-P13Y-2000-v4.0.png ${{ github.workspace }}/build/XA-snow/ | |
sed -i '' "s/REPLACE_ME/${TAG}/g" ${{ github.workspace }}/build/XA-snow/skunkcrafts_updater.cfg | |
sed -i '' "s/REPLACE_ME/${TAG}/g" ${{ github.workspace }}/build/XA-snow/skunkcrafts_updater_beta.cfg | |
root=$(pwd) | |
cd ${{ github.workspace }}/build/ && zip -r xa-snow.zip XA-snow && cd $root | |
- run: | | |
cp -r ${{ github.workspace }}/build/XA-snow/ release/ | |
# create crc32 checksum for all values and write to skunkcrafts_updater_whitelist.txt | |
# format is <filename>|<crc32 checksum> | |
# include subdirectories | |
rm -f release/skunkcrafts_updater_whitelist.txt | |
find release -type f ! \( -name '*skunkcrafts_updater*' -o -path '*skunkcrafts_updater*' \) -print0 | while IFS= read -r -d '' file; do | |
checksum_hex=$(crc32 "$file") | |
# Convert hex checksum to uint32 decimal | |
checksum_decimal=$((16#$checksum_hex)) | |
# Remove "release/" prefix from $file | |
modified_file="${file#release/}" | |
echo "$modified_file|$checksum_decimal" >> release/skunkcrafts_updater_whitelist.txt | |
done | |
touch release/skunkcrafts_updater_blacklist.txt | |
TAG=${GITHUB_REF##*/} | |
if [[ $TAG == *"-test-"* ]] # if TAG contains -test- | |
then | |
echo "This is a just a build test" | |
TARGET_BRANCH="build-test" | |
elif [[ $TAG == *"-"* ]] # if TAG contains - | |
then | |
echo "This is a beta release" | |
TARGET_BRANCH="beta" | |
fi | |
git checkout -b ${TARGET_BRANCH} | |
git add . | |
git commit -m "new ${TARGET_BRANCH} - ${TAG}" | |
git push -f -u origin ${TARGET_BRANCH} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
body_path: ${{ github.workspace }}/README.md | |
files: | | |
${{ github.workspace }}/build/xa-snow.zip | |
prerelease: ${{ contains(github.ref_name, '-') }} |