mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
* unpin unix package * desktop: 1.6.0, build 8 * action: file hashes (#3087) * action: file hashes * better output * correct name --------- Co-authored-by: Stanislav Dmitrenko <7953703+avently@users.noreply.github.com>
295 lines
11 KiB
YAML
295 lines
11 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- stable
|
|
- users
|
|
tags:
|
|
- "v*"
|
|
pull_request:
|
|
|
|
jobs:
|
|
prepare-release:
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone project
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Build changelog
|
|
id: build_changelog
|
|
uses: mikepenz/release-changelog-builder-action@v4
|
|
with:
|
|
configuration: .github/changelog_conf.json
|
|
failOnError: true
|
|
ignorePreReleases: true
|
|
commitMode: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Create release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
body: ${{ steps.build_changelog.outputs.changelog }}
|
|
prerelease: true
|
|
files: |
|
|
LICENSE
|
|
fail_on_unmatched_files: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
build:
|
|
name: build-${{ matrix.os }}
|
|
if: always()
|
|
needs: prepare-release
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-20.04
|
|
cache_path: ~/.cabal/store
|
|
asset_name: simplex-chat-ubuntu-20_04-x86-64
|
|
desktop_asset_name: simplex-desktop-ubuntu-20_04-x86_64.deb
|
|
- os: ubuntu-22.04
|
|
cache_path: ~/.cabal/store
|
|
asset_name: simplex-chat-ubuntu-22_04-x86-64
|
|
desktop_asset_name: simplex-desktop-ubuntu-22_04-x86_64.deb
|
|
- os: macos-latest
|
|
cache_path: ~/.cabal/store
|
|
asset_name: simplex-chat-macos-x86-64
|
|
desktop_asset_name: simplex-desktop-macos-x86_64.dmg
|
|
- os: windows-latest
|
|
cache_path: C:/cabal
|
|
asset_name: simplex-chat-windows-x86-64
|
|
desktop_asset_name: simplex-desktop-windows-x86_64.msi
|
|
steps:
|
|
- name: Configure pagefile (Windows)
|
|
if: matrix.os == 'windows-latest'
|
|
uses: al-cheb/configure-pagefile-action@v1.3
|
|
with:
|
|
minimum-size: 16GB
|
|
maximum-size: 16GB
|
|
disk-root: "C:"
|
|
|
|
- name: Clone project
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Haskell
|
|
uses: haskell-actions/setup@v2
|
|
with:
|
|
ghc-version: "9.6.2"
|
|
cabal-version: "3.10.1.0"
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
${{ matrix.cache_path }}
|
|
dist-newstyle
|
|
key: ${{ matrix.os }}-${{ hashFiles('cabal.project', 'simplex-chat.cabal') }}
|
|
|
|
# / Unix
|
|
|
|
- name: Unix prepare cabal.project.local for Mac
|
|
if: matrix.os == 'macos-latest'
|
|
shell: bash
|
|
run: |
|
|
echo "ignore-project: False" >> cabal.project.local
|
|
echo "package direct-sqlcipher" >> cabal.project.local
|
|
echo " extra-include-dirs: /usr/local/opt/openssl@1.1/include" >> cabal.project.local
|
|
echo " extra-lib-dirs: /usr/local/opt/openssl@1.1/lib" >> cabal.project.local
|
|
echo " flags: +openssl" >> cabal.project.local
|
|
|
|
- name: Install AppImage dependencies
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'ubuntu-20.04'
|
|
run: sudo apt install -y desktop-file-utils
|
|
|
|
- name: Install pkg-config for Mac
|
|
if: matrix.os == 'macos-latest'
|
|
run: brew install pkg-config
|
|
|
|
- name: Unix prepare cabal.project.local for Ubuntu
|
|
if: matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04'
|
|
shell: bash
|
|
run: |
|
|
echo "ignore-project: False" >> cabal.project.local
|
|
echo "package direct-sqlcipher" >> cabal.project.local
|
|
echo " flags: +openssl" >> cabal.project.local
|
|
|
|
- name: Unix build CLI
|
|
id: unix_cli_build
|
|
if: matrix.os != 'windows-latest'
|
|
shell: bash
|
|
run: |
|
|
cabal build --enable-tests
|
|
path=$(cabal list-bin simplex-chat)
|
|
echo "bin_path=$path" >> $GITHUB_OUTPUT
|
|
echo "bin_hash=$(echo SHA2-512\(${{ matrix.asset_name }}\)= $(openssl sha512 $path | cut -d' ' -f 2))" >> $GITHUB_OUTPUT
|
|
|
|
- name: Unix upload CLI binary to release
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os != 'windows-latest'
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ${{ steps.unix_cli_build.outputs.bin_path }}
|
|
asset_name: ${{ matrix.asset_name }}
|
|
tag: ${{ github.ref }}
|
|
|
|
- name: Unix update CLI binary hash
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os != 'windows-latest'
|
|
uses: softprops/action-gh-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
append_body: true
|
|
body: |
|
|
${{ steps.unix_cli_build.outputs.bin_hash }}
|
|
|
|
- name: Setup Java
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'corretto'
|
|
java-version: '17'
|
|
cache: 'gradle'
|
|
|
|
- name: Linux build desktop
|
|
id: linux_desktop_build
|
|
if: startsWith(github.ref, 'refs/tags/v') && (matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04')
|
|
shell: bash
|
|
run: |
|
|
scripts/desktop/build-lib-linux.sh
|
|
cd apps/multiplatform
|
|
./gradlew packageDeb
|
|
path=$(echo $PWD/release/main/deb/simplex_*_amd64.deb)
|
|
echo "package_path=$path" >> $GITHUB_OUTPUT
|
|
echo "package_hash=$(echo SHA2-512\(${{ matrix.desktop_asset_name }}\)= $(openssl sha512 $path | cut -d' ' -f 2))" >> $GITHUB_OUTPUT
|
|
|
|
- name: Linux make AppImage
|
|
id: linux_appimage_build
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'ubuntu-20.04'
|
|
shell: bash
|
|
run: |
|
|
scripts/desktop/make-appimage-linux.sh
|
|
path=$(echo $PWD/apps/multiplatform/release/main/*imple*.AppImage)
|
|
echo "appimage_path=$path" >> $GITHUB_OUTPUT
|
|
echo "appimage_hash=$(echo SHA2-512\(simplex-desktop-x86_64.AppImage\)= $(openssl sha512 $path | cut -d' ' -f 2))" >> $GITHUB_OUTPUT
|
|
|
|
- name: Mac build desktop
|
|
id: mac_desktop_build
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'macos-latest'
|
|
shell: bash
|
|
env:
|
|
APPLE_SIMPLEX_SIGNING_KEYCHAIN: ${{ secrets.APPLE_SIMPLEX_SIGNING_KEYCHAIN }}
|
|
APPLE_SIMPLEX_NOTARIZATION_APPLE_ID: ${{ secrets.APPLE_SIMPLEX_NOTARIZATION_APPLE_ID }}
|
|
APPLE_SIMPLEX_NOTARIZATION_PASSWORD: ${{ secrets.APPLE_SIMPLEX_NOTARIZATION_PASSWORD }}
|
|
run: |
|
|
scripts/ci/build-desktop-mac.sh
|
|
path=$(echo $PWD/apps/multiplatform/release/main/dmg/SimpleX-*.dmg)
|
|
echo "package_path=$path" >> $GITHUB_OUTPUT
|
|
echo "package_hash=$(echo SHA2-512\(${{ matrix.desktop_asset_name }}\)= $(openssl sha512 $path | cut -d' ' -f 2))" >> $GITHUB_OUTPUT
|
|
|
|
- name: Linux upload desktop package to release
|
|
if: startsWith(github.ref, 'refs/tags/v') && (matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04')
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ${{ steps.linux_desktop_build.outputs.package_path }}
|
|
asset_name: ${{ matrix.desktop_asset_name }}
|
|
tag: ${{ github.ref }}
|
|
|
|
- name: Linux update desktop package hash
|
|
if: startsWith(github.ref, 'refs/tags/v') && (matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04')
|
|
uses: softprops/action-gh-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
append_body: true
|
|
body: |
|
|
${{ steps.linux_desktop_build.outputs.package_hash }}
|
|
|
|
- name: Linux upload AppImage to release
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'ubuntu-20.04'
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ${{ steps.linux_appimage_build.outputs.appimage_path }}
|
|
asset_name: simplex-desktop-x86_64.AppImage
|
|
tag: ${{ github.ref }}
|
|
|
|
- name: Linux update AppImage hash
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'ubuntu-20.04'
|
|
uses: softprops/action-gh-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
append_body: true
|
|
body: |
|
|
${{ steps.linux_appimage_build.outputs.appimage_hash }}
|
|
|
|
- name: Mac upload desktop package to release
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'macos-latest'
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ${{ steps.mac_desktop_build.outputs.package_path }}
|
|
asset_name: ${{ matrix.desktop_asset_name }}
|
|
tag: ${{ github.ref }}
|
|
|
|
- name: Mac update desktop package hash
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'macos-latest'
|
|
uses: softprops/action-gh-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
append_body: true
|
|
body: |
|
|
${{ steps.mac_desktop_build.outputs.package_hash }}
|
|
|
|
- name: Unix test
|
|
if: matrix.os != 'windows-latest'
|
|
timeout-minutes: 30
|
|
shell: bash
|
|
run: cabal test --test-show-details=direct
|
|
|
|
# Unix /
|
|
|
|
# / Windows
|
|
# rm -rf dist-newstyle/src/direct-sq* is here because of the bug in cabal's dependency which prevents second build from finishing
|
|
|
|
- name: Windows build
|
|
id: windows_build
|
|
if: matrix.os == 'windows-latest'
|
|
shell: bash
|
|
run: |
|
|
rm -rf dist-newstyle/src/direct-sq*
|
|
sed -i "s/, unix /--, unix /" simplex-chat.cabal
|
|
cabal build --enable-tests
|
|
rm -rf dist-newstyle/src/direct-sq*
|
|
path=$(cabal list-bin simplex-chat | tail -n 1)
|
|
echo "bin_path=$path" >> $GITHUB_OUTPUT
|
|
echo "bin_hash=$(echo SHA2-512\(${{ matrix.asset_name }}\)= $(openssl sha512 $path | cut -d' ' -f 2))" >> $GITHUB_OUTPUT
|
|
|
|
- name: Windows upload CLI binary to release
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'windows-latest'
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ${{ steps.windows_build.outputs.bin_path }}
|
|
asset_name: ${{ matrix.asset_name }}
|
|
tag: ${{ github.ref }}
|
|
|
|
- name: Windows update CLI binary hash
|
|
if: startsWith(github.ref, 'refs/tags/v') && matrix.os == 'windows-latest'
|
|
uses: softprops/action-gh-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
append_body: true
|
|
body: |
|
|
${{ steps.windows_build.outputs.bin_hash }}
|
|
|
|
# Windows /
|