Skip to content

build-daily

build-daily #767

Workflow file for this run

name: build-daily
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch: # Enables manually
pull_request:
branches:
- master
types: [opened, synchronize, reopened]
# push:
# branches:
# - master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
QT_VERSION: 6.8.3
QT_MODULES: 'qtcharts qtserialbus qtserialport qtwebsockets'
DOCKER_IMAGE: ghcr.io/x-tools-author/x-tools-ubuntu-20.04:x86_64
QT_ANDROID_KEYSTORE_PATH: res/android/android_release.keystore
QT_ANDROID_KEYSTORE_ALIAS: ${{ secrets.ANDROID_KEYSTORE_ALIAS }}
QT_ANDROID_KEYSTORE_STORE_PASS: ${{ secrets.ANDROID_KEYSTORE_STORE_PASS }}
QT_ANDROID_KEYSTORE_KEY_PASS: ${{ secrets.ANDROID_KEYSTORE_KEY_PASS }}
jobs:
update-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Update continuous tag
run: |
git config --global user.email "[email protected]"
git config --global user.name "x-tools-author"
git tag -d continuous || true
git push origin :refs/tags/continuous
git tag continuous
git push origin continuous -f
update-release:
runs-on: ubuntu-latest
needs: update-tag
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Delete Release
run: |
gh release delete continuous -y || true
- name: Create Release
run: |
gh release create continuous --title "Continuous Build" --notes "Daily build of xTools"
release-for-windows:
runs-on: windows-2022
needs: update-release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '${{ env.QT_VERSION }}'
target: 'desktop'
arch: 'win64_msvc2022_64'
dir: '${{ github.workspace }}'
modules: '${{env.QT_MODULES}}'
- name: Build for Windows
shell: cmd
run: |
git fetch --tags
mkdir build
cd build
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
cmake -DCMAKE_PREFIX_PATH='${{ github.workspace }}/Qt/${{env.QT_VERSION}}/win64_msvc2022_64' -DCMAKE_BUILD_TYPE=Release -G "Ninja" ../
cmake --build . --target xTools
cmake --build . --target xTools_zip
- name: Upload Release Asset for Windnows
shell: cmd
run: |
for %%f in (bin\Windows\Release\xTools-zip\*.zip) do gh release upload continuous "%%f" --clobber
release-for-windows7:
runs-on: windows-2022
needs: update-release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '5.15.2'
target: 'desktop'
arch: 'win64_msvc2019_64'
dir: '${{ github.workspace }}'
modules: 'qtcharts'
- name: Build for Windows
shell: cmd
run: |
git fetch --tags
mkdir build
cd build
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
cmake -DCMAKE_PREFIX_PATH='${{ github.workspace }}/Qt/${{env.QT_VERSION}}/win64_msvc2022_64' -DCMAKE_BUILD_TYPE=Release -G "Ninja" ../
cmake --build . --target xTools
cmake --build . --target xTools_zip
- name: Upload Release Asset for Windnows
shell: cmd
run: |
for %%f in (bin\Windows\Release\xTools-zip\*.zip) do gh release upload continuous "%%f" --clobber
release-for-linux:
runs-on: ubuntu-22.04
needs: update-release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build for Linux
run: |
git fetch --tags
docker run --rm --privileged -v ${{ github.workspace }}:/workspace ${{ env.DOCKER_IMAGE }} /bin/bash -c "\
cd /workspace && chmod +x ./scripts/ci-build-ubuntu-20.04.sh && ./scripts/ci-build-ubuntu-20.04.sh"
- name: Upload Release Asset for Linux
run: |
dir bin/Linux/Release
find bin/Linux/Release/xTools-linux -name "*.deb" -exec gh release upload continuous {} \;
find bin/Linux/Release/xTools-linux -name "*.AppImage" -exec gh release upload continuous {} \;
release-for-macos:
runs-on: macos-14
needs: update-release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Qt for macOS
uses: jurplel/install-qt-action@v4
with:
version: '${{env.QT_VERSION}}'
target: 'desktop'
arch: 'clang_64'
dir: ${{ github.workspace }}
modules: 'qtcharts qtserialbus qtserialport qtwebsockets'
- name: Build for macOS
# 278ERROR: no file at "/usr/local/opt/libiodbc/lib/libiodbc.2.dylib"
# brew unlink unixodbc
# brew install libiodbc
# ERROR: no file at "/Applications/Postgres.app/Contents/Versions/14/lib/libpq.5.dylib"
# ln -s /usr/local/Cellar/postgresql@14/14.10/lib/postgresql@14/libpq.5.14.dylib /Applications/Postgres.app/Contents/Versions/14/lib/libpq.5.dylib
run: |
git fetch --tags
# brew unlink unixodbc
# brew install libiodbc
mkdir -p /Applications/Postgres.app/Contents/Versions/14/lib
ln -s /usr/local/Cellar/postgresql@14/14.10/lib/postgresql@14/libpq.5.14.dylib /Applications/Postgres.app/Contents/Versions/14/lib/libpq.5.dylib
mkdir build
cd build
cmake ../ -DCMAKE_PREFIX_PATH='${{ github.workspace }}/Qt/${{env.QT_VERSION}}/clang_64/lib/cmake/Qt6' -DCMAKE_BUILD_TYPE:STRING=Release
cmake --build . --target xTools
cmake --build . --target xTools_dmg
- name: Upload Release Asset for macOS
run: |
ls bin/Darwin/Release/xTools
find bin/Darwin/Release/xTools -name "*.dmg" -exec gh release upload continuous {} \;
release-for-android:
runs-on: ubuntu-24.04
needs: update-release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build for Android with Docker
run: |
git fetch --tags
docker pull ${{ env.DOCKER_IMAGE }}
docker run --rm -v ${{ github.workspace }}:/workspace ${{ env.DOCKER_IMAGE }} /bin/bash -c "\
cd /workspace && chmod +x ./scripts/ci-build-android-armv7.sh && ./scripts/ci-build-android-armv7.sh \
${{env.QT_ANDROID_KEYSTORE_PATH}} ${{env.QT_ANDROID_KEYSTORE_ALIAS}} ${{env.QT_ANDROID_KEYSTORE_STORE_PASS}} ${{env.QT_ANDROID_KEYSTORE_KEY_PASS}}"
- name: Upload Release Asset for Android
run: |
cmake -E copy build/armeabi_v7a/android-build/build/outputs/apk/release/android-build-release-signed.apk xtools-android-armeabi_v7a.apk
ls && tree build/armeabi_v7a && gh release upload continuous xtools-android-armeabi_v7a.apk