2019-10-14 14:13:00 -07:00
|
|
|
name: Mac
|
2019-10-25 21:04:01 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-10-14 14:13:00 -07:00
|
|
|
|
|
|
|
jobs:
|
2020-12-11 09:49:40 -08:00
|
|
|
buildMac:
|
2023-12-09 03:31:18 +09:00
|
|
|
runs-on: macOS-11
|
2019-10-14 14:13:00 -07:00
|
|
|
steps:
|
|
|
|
- name: checkout sources
|
|
|
|
uses: actions/checkout@v1
|
2024-01-04 20:44:31 -08:00
|
|
|
|
2024-01-09 15:10:12 -08:00
|
|
|
- name: atomically create or retrieve the build number and assemble release notes
|
2024-01-04 20:44:31 -08:00
|
|
|
id: version_number
|
2023-12-16 11:34:24 +13:00
|
|
|
if: github.event_name == 'push'
|
2023-12-10 20:04:45 -08:00
|
|
|
run: |
|
2024-01-10 07:11:27 -08:00
|
|
|
bash scripts/get-atomic-buildnr.sh ${{ github.sha }} ${{ secrets.NIGHTLY_BUILDS }} "CICD-release"
|
2024-01-10 17:13:17 -08:00
|
|
|
version=$(cat release-version)
|
2024-01-10 13:02:48 -08:00
|
|
|
echo "version=$version" >> $GITHUB_OUTPUT
|
2024-01-04 20:44:31 -08:00
|
|
|
|
|
|
|
- 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-10 20:04:45 -08:00
|
|
|
|
2019-10-14 14:13:00 -07:00
|
|
|
- name: setup Homebrew
|
2023-12-10 16:27:30 -08:00
|
|
|
run: brew install hidapi libxslt libjpg libmtp create-dmg confuse
|
2019-10-14 14:13:00 -07:00
|
|
|
- name: set our Qt build
|
|
|
|
run: |
|
2023-12-09 03:31:18 +09:00
|
|
|
curl --output ssrf-Qt-5.15.2-mac.tar.xz https://f002.backblazeb2.com/file/Subsurface-Travis/ssrf-Qt5.15.2.tar.xz
|
|
|
|
tar -xJf ssrf-Qt-5.15.2-mac.tar.xz
|
2020-01-01 10:52:53 -08:00
|
|
|
- name: build Subsurface
|
2023-12-10 15:01:42 -08:00
|
|
|
id: build
|
2020-01-01 10:52:53 -08:00
|
|
|
run: |
|
|
|
|
cd ${GITHUB_WORKSPACE}/..
|
2023-12-09 03:31:18 +09:00
|
|
|
export QT_ROOT=${GITHUB_WORKSPACE}/Qt5.15.2/5.15.2/clang_64
|
2020-01-01 10:52:53 -08:00
|
|
|
export QT_QPA_PLATFORM_PLUGIN_PATH=$QT_ROOT/plugins
|
|
|
|
export PATH=$QT_ROOT/bin:$PATH
|
|
|
|
export CMAKE_PREFIX_PATH=$QT_ROOT/lib/cmake
|
2019-12-27 11:21:09 -08:00
|
|
|
|
2023-12-08 15:23:53 -08:00
|
|
|
# now setup Subsurface with WebKit and build the dependencies, using the generic build script
|
|
|
|
bash -e -x ./subsurface/scripts/build.sh -desktop -build-with-webkit -release -build-deps -ftdi -prep-only
|
2019-10-14 14:13:00 -07:00
|
|
|
|
2023-12-08 15:23:53 -08:00
|
|
|
echo "finished initial cmake setup of Subsurface - next build the package"
|
2023-12-09 03:31:18 +09:00
|
|
|
cd subsurface/build
|
|
|
|
echo "run the packaging script"
|
2023-12-08 15:23:53 -08:00
|
|
|
bash -e -x ../packaging/macosx/make-package.sh | tee mp.log 2>&1
|
|
|
|
IMG=$(grep ^created: mp.log | tail -1 | cut -b10-)
|
2023-12-09 03:31:18 +09:00
|
|
|
echo "Created $IMG"
|
2023-12-10 15:01:42 -08:00
|
|
|
echo "dmg=$IMG" >> $GITHUB_OUTPUT
|
2019-10-14 14:13:00 -07:00
|
|
|
|
2023-12-10 15:01:42 -08:00
|
|
|
# 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@v1
|
|
|
|
with:
|
2024-01-10 13:02:48 -08:00
|
|
|
tag_name: v${{ steps.version_number.outputs.version }}
|
2023-12-10 15:01:42 -08:00
|
|
|
repository: subsurface/nightly-builds
|
|
|
|
token: ${{ secrets.NIGHTLY_BUILDS }}
|
|
|
|
prerelease: false
|
|
|
|
fail_on_unmatched_files: true
|
|
|
|
files: ${{ steps.build.outputs.dmg }}
|