2019-10-16 18:31:29 +00:00
name : Windows
2019-10-26 01:04:01 +00:00
on :
push :
branches :
- master
pull_request :
branches :
- master
2019-10-16 18:31:29 +00:00
jobs :
2020-12-11 17:49:40 +00:00
buildWindows :
2019-10-16 18:31:29 +00:00
runs-on : ubuntu-latest
container :
2023-12-06 21:20:20 +00:00
image : docker://subsurface/mxe-build-container:3.0.1
2019-10-16 18:31:29 +00:00
steps :
- name : checkout sources
2019-10-17 23:12:42 +00:00
uses : actions/checkout@v1
2019-10-16 18:31:29 +00:00
2023-12-11 04:04:45 +00:00
- name : atomically create or retrieve the build number
2024-01-05 04:44:31 +00:00
id : version_number
2023-12-15 22:34:24 +00:00
if : github.event_name == 'push'
2023-12-05 07:35:49 +00:00
run : |
2024-01-08 23:57:38 +00:00
version=$(bash subsurface/scripts/get-atomic-buildnr.sh ${{ github.sha }} ${{ secrets.NIGHTLY_BUILDS }} "CICD-release")
2024-01-05 04:44:31 +00:00
echo "version=$version" >> $GITHUB_OUTPUT
- name : store dummy version and build number for pull request
if : github.event_name == 'pull_request'
run : |
echo "100" > latest-subsurface-buildnumber
echo "CICD-pull-request" > latest-subsurface-buildnumber-extension
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 .
2020-05-30 11:21:22 +00:00
bash -x subsurface/.github/workflows/scripts/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
run : |
cd /win
2019-10-18 16:25:14 +00:00
bash -x subsurface/.github/workflows/scripts/windows-in-container-build.sh 2>&1 | tee build.log
2019-10-16 18:31:29 +00:00
grep "Built target installer" build.log
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'
2023-12-05 07:35:49 +00:00
uses : softprops/action-gh-release@v1
2019-10-27 02:28:30 +00:00
with :
2023-12-11 04:04:45 +00:00
tag_name : v${{ steps.version_number.outputs.version }}
2023-12-11 00:35:16 +00:00
repository : subsurface/nightly-builds
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
2023-12-11 01:00:29 +00:00
body : |
CICD release artifact
These builds are created on every merge or push into the [Subsurface repo](http://github.com/subsurface/subsurface).
2024-01-08 10:15:04 +00:00
This build is based on changeset ${{ github.event.head_commit.id }} ([link](${{ github.event.head_commit.url }})):
${{ github.event.head_commit.message }}
2023-12-11 01:00:29 +00:00
2024-01-08 00:27:21 +00:00
None of these artifacts are signed with an official key.
2023-12-11 01:00:29 +00:00
The Android APK can be side-loaded on most Android devices. If you had a previous Subsurface-mobile version installed from the Google Play store, you'll have to uninstall that first.
The Windows installer will ask you to confirm installation of an app from an unknown developer.
The macOS DMG makes it even harder with a multi-step dance that requires opening the Privacy & Security settings in the System Preferences and explicitly confirming that you are willing to install this app.
You can find similar Subsurface-Daily builds for [Ubuntu](https://ppa.launchpadcontent.net/subsurface) and Subsurface-test for [Fedora](https://copr.fedorainfracloud.org/coprs/dirkhh/Subsurface-test).
2024-01-08 10:15:04 +00:00
**Note:** Due to the asynchronous nature of our build process the artifacts for the individual platforms are added to the release one by one, whenever their build is finished. So if you can not find a particular artifact on a recent (less than 2 hours old) build, please come back later and check again.
2023-12-11 01:00:29 +00:00
Please report any issues with these builds in the [Subsurface user forum](https://groups.google.com/g/subsurface-divelog).