2019-10-16 18:31:29 +00:00
|
|
|
name: Windows
|
2024-05-11 05:33:54 +00:00
|
|
|
|
2019-10-26 01:04:01 +00:00
|
|
|
on:
|
|
|
|
push:
|
2024-01-20 12:07:33 +00:00
|
|
|
paths-ignore:
|
|
|
|
- scripts/docker/**
|
2019-10-26 01:04:01 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2024-01-20 12:07:33 +00:00
|
|
|
paths-ignore:
|
|
|
|
- scripts/docker/**
|
2019-10-26 01:04:01 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2019-10-16 18:31:29 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-05-11 05:33:54 +00:00
|
|
|
build:
|
2019-10-16 18:31:29 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2024-01-21 18:54:06 +00:00
|
|
|
image: docker://subsurface/mxe-build:3.1.0
|
2019-10-16 18:31:29 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: checkout sources
|
2024-05-11 05:33:54 +00:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: recursive
|
2019-10-16 18:31:29 +00:00
|
|
|
|
2024-05-11 05:33:54 +00:00
|
|
|
- name: set the version information
|
2024-01-05 04:44:31 +00:00
|
|
|
id: version_number
|
2024-05-11 05:33:54 +00:00
|
|
|
uses: ./.github/actions/manage-version
|
|
|
|
with:
|
|
|
|
nightly-builds-secret: ${{ secrets.NIGHTLY_BUILDS }}
|
2023-12-05 07:35:49 +00:00
|
|
|
|
2019-10-16 18:31:29 +00:00
|
|
|
- name: get other dependencies
|
2022-05-13 18:33:05 +00:00
|
|
|
env:
|
|
|
|
SUBSURFACE_REPO_PATH: ${{ github.workspace }}
|
2019-10-16 18:31:29 +00:00
|
|
|
run: |
|
2020-05-30 11:21:22 +00:00
|
|
|
echo "Running script to install additional dependancies into container"
|
2022-05-13 18:33:05 +00:00
|
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}
|
|
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}/libdivecomputer
|
2020-06-11 07:52:30 +00:00
|
|
|
cd /win
|
|
|
|
ln -s /__w/subsurface/subsurface .
|
2024-04-23 23:27:10 +00:00
|
|
|
bash -x subsurface/packaging/windows/container-prep.sh 2>&1 | tee pre-build.log
|
2023-12-05 07:35:49 +00:00
|
|
|
|
2019-10-16 18:31:29 +00:00
|
|
|
- name: run build
|
2024-07-30 22:16:17 +00:00
|
|
|
env:
|
|
|
|
CANONICALVERSION: ${{ steps.version_number.outputs.version }}
|
|
|
|
CANONICALVERSION_4: ${{ steps.version_number.outputs.version_4 }}
|
2019-10-16 18:31:29 +00:00
|
|
|
run: |
|
2024-04-23 23:27:10 +00:00
|
|
|
export OUTPUT_DIR="$GITHUB_WORKSPACE"
|
2019-10-16 18:31:29 +00:00
|
|
|
cd /win
|
2024-04-23 23:27:10 +00:00
|
|
|
bash -x subsurface/packaging/windows/in-container-build.sh 2>&1 | tee build.log
|
2019-10-16 18:31:29 +00:00
|
|
|
grep "Built target installer" build.log
|
|
|
|
|
2024-05-11 05:33:54 +00:00
|
|
|
- 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
|
|
|
|
|
2023-12-07 18:10:23 +00:00
|
|
|
# only publish a 'release' on push events (those include merging a PR)
|
2023-12-05 07:35:49 +00:00
|
|
|
- name: upload binaries
|
2023-12-07 18:10:23 +00:00
|
|
|
if: github.event_name == 'push'
|
2024-05-12 23:07:05 +00:00
|
|
|
uses: softprops/action-gh-release@v2
|
2019-10-27 02:28:30 +00:00
|
|
|
with:
|
2024-01-10 21:02:48 +00:00
|
|
|
tag_name: v${{ steps.version_number.outputs.version }}
|
2024-01-11 00:03:11 +00:00
|
|
|
repository: ${{ github.repository_owner }}/nightly-builds
|
2023-12-11 00:35:16 +00:00
|
|
|
token: ${{ secrets.NIGHTLY_BUILDS }}
|
|
|
|
prerelease: false
|
|
|
|
fail_on_unmatched_files: true
|
2023-12-05 07:35:49 +00:00
|
|
|
files: |
|
2023-12-07 12:14:22 +00:00
|
|
|
./subsurface*.exe*
|
|
|
|
./smtk2ssrf*.exe
|