Skip to content

g++ for qmake

g++ for qmake #33

Workflow file for this run

# Copyright (c) 2023 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
name: Artifacts
on:
# See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request.
pull_request:
# See: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push.
push:
branches:
- '**'
tags-ignore:
- '**'
concurrency:
group: ${{ github.workflow }}${{ github.event_name != 'pull_request' && github.run_id || github.ref }}
cancel-in-progress: true
jobs:
android:
name: Android
# name: ${{ matrix.host.name }}
runs-on: ubuntu-latest
container: ubuntu:22.04
# strategy:
# fail-fast: false
# matrix:
# host:
# - name: 'macOS arm64'
# packages: ''
# triplet: 'arm64-apple-darwin'
# compiler: 'clang'
# configure_options: ''
# gui_exe: 'bitcoin-qt'
# artifact: 'unsecure_macos_apple_silicon_gui'
# - name: 'macOS x86_64'
# packages: ''
# triplet: 'x86_64-apple-darwin'
# compiler: 'clang'
# configure_options: ''
# gui_exe: 'bitcoin-qt'
# artifact: 'unsecure_macos_intel_gui'
# - name: 'Windows'
# packages: 'g++-mingw-w64-x86-64-posix'
# triplet: 'x86_64-w64-mingw32'
# compiler: 'x86_64-w64-mingw32-g++-posix'
# configure_options: 'CXXFLAGS=-Wno-return-type'
# gui_exe: 'bitcoin-qt.exe'
# artifact: 'unsecure_windows_gui'
env:
ANDROID_HOME: '${{ github.workspace }}/Android'
ANDROID_API_LEVEL: '28'
ANDROID_BUILD_TOOLS_VERSION: '28.0.3'
ANDROID_NDK_VERSION: '23.2.8568313'
ANDROID_TOOLS_URL: 'https://dl.google.com/android/repository/commandlinetools-linux-8512546_latest.zip'
CCACHE_MAXSIZE: '30M'
steps:
- name: Install dependency packages
run: |
apt-get update
apt-get install --no-install-recommends -y ca-certificates curl g++ lbzip2 make openjdk-8-jdk patch unzip xz-utils
- name: Install Android tools
run: |
curl --location --fail ${{ env.ANDROID_TOOLS_URL }} -o android-tools.zip
mkdir -p ${{ env.ANDROID_HOME }}
unzip -o android-tools.zip -d ${{ env.ANDROID_HOME }}
yes | ${{ env.ANDROID_HOME }}/cmdline-tools/bin/sdkmanager --sdk_root=${{ env.ANDROID_HOME }} --install "build-tools;${{ env.ANDROID_BUILD_TOOLS_VERSION }}" "platform-tools" "platforms;android-31" "platforms;android-${{ env.ANDROID_API_LEVEL }}" "ndk;${{ env.ANDROID_NDK_VERSION }}"
- name: Checkout
uses: actions/checkout@v4
# - name: Install dependency packages
# run: |
# sudo apt-get update
# sudo apt-get install ccache
# echo "CCACHE_DIR=${{ runner.temp }}/ccache" >> "$GITHUB_ENV"
# # sudo apt-get install ccache ${{ matrix.host.packages }}
# # echo "CCACHE_DIR=${{ runner.temp }}/ccache" >> "$GITHUB_ENV"
- name: Depends fingerprint
id: depends_fingerprint
run: |
echo ${{ env.ANDROID_NDK_VERSION }} > depends/android-ndk-version
echo "hash=${{ hashFiles('./depends/**') }}" >> "$GITHUB_OUTPUT"
- name: Depends cache
id: depends_cache
uses: actions/cache@v3
with:
path: |
depends/built
# key: ${{ matrix.host.triplet }}-depends-${{ steps.depends_fingerprint.outputs.hash }}
key: android-depends-${{ steps.depends_fingerprint.outputs.hash }}
- name: Build depends
run: |
cd depends
make -j$(nproc) HOST=aarch64-linux-android ANDROID_SDK=${{ env.ANDROID_HOME }} ANDROID_NDK=${{ env.ANDROID_HOME }}/ndk/${{ env.ANDROID_NDK_VERSION }} ANDROID_API_LEVEL=${{ env.ANDROID_API_LEVEL }} ANDROID_TOOLCHAIN_BIN=${{ env.ANDROID_HOME }}/ndk/${{ env.ANDROID_NDK_VERSION }}/toolchains/llvm/prebuilt/linux-x86_64/bin
# # - name: Restore Ccache cache
# # uses: actions/cache/restore@v3
# # id: ccache-cache
# # with:
# # path: ${{ env.CCACHE_DIR }}
# # key: ${{ matrix.host.triplet }}-ccache-${{ github.run_id }}
# # restore-keys: ${{ matrix.host.triplet }}-ccache-
# # - name: Configure
# # run: |
# # ./autogen.sh
# # ./configure CONFIG_SITE=${{ github.workspace }}/depends/${{ matrix.host.triplet }}/share/config.site --disable-dependency-tracking --enable-werror ${{ matrix.host.configure_options }} || (cat config.log; false)
# # - name: Build GUI
# # run: |
# # ccache --zero-stats
# # make -j$(nproc) src/qt/${{ matrix.host.gui_exe }}
# # ccache --version | head -n 1 && ccache --show-stats
# # - name: Save Ccache cache
# # uses: actions/cache/save@v3
# # if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
# # with:
# # path: ${{ env.CCACHE_DIR }}
# # key: ${{ matrix.host.triplet }}-ccache-${{ github.run_id }}
# # - uses: actions/upload-artifact@v3
# # with:
# # name: ${{ matrix.host.artifact }}
# # path: src/qt/${{ matrix.host.gui_exe }}