mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
009e8a32bb
Signed-off-by: Michael Keller <github@ike.ch>
76 lines
2.2 KiB
YAML
76 lines
2.2 KiB
YAML
name: Windows
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- scripts/docker/**
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths-ignore:
|
|
- scripts/docker/**
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: docker://subsurface/mxe-build:3.1.0
|
|
|
|
steps:
|
|
- name: checkout sources
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: recursive
|
|
|
|
- name: set the version information
|
|
id: version_number
|
|
uses: ./.github/actions/manage-version
|
|
with:
|
|
nightly-builds-secret: ${{ secrets.NIGHTLY_BUILDS }}
|
|
|
|
- name: get other dependencies
|
|
env:
|
|
SUBSURFACE_REPO_PATH: ${{ github.workspace }}
|
|
run: |
|
|
echo "Running script to install additional dependancies into container"
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}/libdivecomputer
|
|
cd /win
|
|
ln -s /__w/subsurface/subsurface .
|
|
bash -x subsurface/packaging/windows/container-prep.sh 2>&1 | tee pre-build.log
|
|
|
|
- name: run build
|
|
env:
|
|
CANONICALVERSION: ${{ steps.version_number.outputs.version }}
|
|
CANONICALVERSION_4: ${{ steps.version_number.outputs.version_4 }}
|
|
run: |
|
|
export OUTPUT_DIR="$GITHUB_WORKSPACE"
|
|
cd /win
|
|
bash -x subsurface/packaging/windows/in-container-build.sh 2>&1 | tee build.log
|
|
grep "Built target installer" build.log
|
|
|
|
- name: publish pull request artifacts
|
|
if: github.event_name == 'pull_request'
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Subsurface-Windows-${{ steps.version_number.outputs.version }}
|
|
path: |
|
|
subsurface*.exe*
|
|
smtk2ssrf*.exe
|
|
|
|
# only publish a 'release' on push events (those include merging a PR)
|
|
- name: upload binaries
|
|
if: github.event_name == 'push'
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
tag_name: v${{ steps.version_number.outputs.version }}
|
|
repository: ${{ github.repository_owner }}/nightly-builds
|
|
token: ${{ secrets.NIGHTLY_BUILDS }}
|
|
prerelease: false
|
|
fail_on_unmatched_files: true
|
|
files: |
|
|
./subsurface*.exe*
|
|
./smtk2ssrf*.exe
|