2021-03-31 09:06:35 -07:00
|
|
|
name: Ubuntu 14.04 / Qt 5.12 for AppImage--
|
2019-10-25 21:04:01 -04:00
|
|
|
on:
|
|
|
|
push:
|
2024-01-21 01:07:33 +13:00
|
|
|
paths-ignore:
|
|
|
|
- scripts/docker/**
|
2019-10-25 21:04:01 -04:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2024-01-21 01:07:33 +13:00
|
|
|
paths-ignore:
|
|
|
|
- scripts/docker/**
|
2019-10-25 21:04:01 -04:00
|
|
|
branches:
|
|
|
|
- master
|
2019-10-14 16:08:22 -07:00
|
|
|
|
|
|
|
jobs:
|
2020-12-11 09:49:40 -08:00
|
|
|
buildAppImage:
|
2019-10-14 16:08:22 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2020-12-27 14:31:39 -08:00
|
|
|
image: docker://subsurface/trusty-qt512:1.1
|
2019-10-14 16:08:22 -07:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: checkout sources
|
2019-10-17 16:12:42 -07:00
|
|
|
uses: actions/checkout@v1
|
2019-10-14 16:08:22 -07: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
|
|
|
|
if: github.event_name == 'push'
|
|
|
|
run: |
|
2024-01-10 17:44:48 -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
|
|
|
|
|
2019-10-14 16:08:22 -07:00
|
|
|
- name: run build
|
2022-05-13 11:33:05 -07:00
|
|
|
env:
|
|
|
|
SUBSURFACE_REPO_PATH: ${{ github.workspace }}
|
2019-10-14 16:08:22 -07:00
|
|
|
run: |
|
2019-10-17 16:12:42 -07:00
|
|
|
cd ..
|
2022-05-13 11:33:05 -07:00
|
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}
|
|
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}/libdivecomputer
|
2020-01-27 14:50:52 -08:00
|
|
|
rm -rf /install-root/include/libdivecomputer
|
2019-10-18 09:25:14 -07:00
|
|
|
bash -x subsurface/.github/workflows/scripts/linux-in-container-build.sh
|
2019-10-14 16:08:22 -07:00
|
|
|
|
2019-10-26 22:28:30 -04:00
|
|
|
- name: prepare PR artifacts
|
|
|
|
if: github.event_name == 'pull_request'
|
2019-10-25 16:53:48 -04:00
|
|
|
run: |
|
2019-10-26 22:28:30 -04:00
|
|
|
mkdir -p Linux-artifacts
|
|
|
|
mv Subsurface.AppImage Linux-artifacts
|
|
|
|
|
|
|
|
- name: PR artifacts
|
|
|
|
if: github.event_name == 'pull_request'
|
2023-12-15 13:02:45 -08:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-10-26 22:28:30 -04:00
|
|
|
with:
|
|
|
|
name: Linux-artifacts
|
|
|
|
path: Linux-artifacts
|
2024-01-04 20:44:31 -08:00
|
|
|
|
|
|
|
- name: prepare release artifacts
|
|
|
|
if: github.event_name == 'push'
|
|
|
|
run: |
|
2024-01-10 13:02:48 -08:00
|
|
|
mv Subsurface.AppImage Subsurface-v${{ steps.version_number.outputs.version }}.AppImage
|
2024-01-04 20:44:31 -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 }}
|
2024-01-11 13:03:11 +13:00
|
|
|
repository: ${{ github.repository_owner }}/nightly-builds
|
2024-01-04 20:44:31 -08:00
|
|
|
token: ${{ secrets.NIGHTLY_BUILDS }}
|
|
|
|
prerelease: false
|
|
|
|
fail_on_unmatched_files: true
|
|
|
|
files: |
|
|
|
|
./Subsurface*.AppImage
|