Skip to content

Merge pull request #7047 from BOINC/dpa_plan_class2 #8080

Merge pull request #7047 from BOINC/dpa_plan_class2

Merge pull request #7047 from BOINC/dpa_plan_class2 #8080

Workflow file for this run

# This file is part of BOINC.
# https://boinc.berkeley.edu
# Copyright (C) 2026 University of California
#
# BOINC is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# BOINC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
name: Linux-MinGW
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
AWS_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }}
AWS_DEFAULT_REGION: us-west-2
jobs:
build:
name: ${{ matrix.type }}-${{ matrix.arch }}-build
runs-on: ubuntu-latest
strategy:
matrix:
arch: [x86_64, aarch64]
type: [libs-mingw, apps-mingw-vcpkg, libs-mingw-cmake]
exclude:
- arch: aarch64
type: apps-mingw-vcpkg
- arch: aarch64
type: libs-mingw-cmake
fail-fast: false
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Check if build is running from origin repo
if: ${{ success() && env.AWS_ACCESS_KEY_ID != 0 && env.AWS_SECRET_ACCESS_KEY != 0 }}
run: |
echo "VCPKG_BINARY_SOURCES=clear;x-aws,s3://vcpkg.cache.boinc/,readwrite" >> $GITHUB_ENV
- name: Check if build is running from fork
if: ${{ success() && (env.AWS_ACCESS_KEY_ID == 0 || env.AWS_SECRET_ACCESS_KEY == 0) }}
run: |
echo "VCPKG_BINARY_SOURCES=clear;x-aws-config,no-sign-request;x-aws,s3://vcpkg.cache.boinc/,read" >> $GITHUB_ENV
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y tar curl zip unzip p7zip-full
- name: Install x86_64 mingw toolchain
if: success() && matrix.arch == 'x86_64'
run: |
sudo apt-get install -y mingw-w64 mingw-w64-tools mingw-w64-x86-64-dev mingw-w64-i686-dev
- name: Install aarch64 llvm-mingw toolchain
if: success() && matrix.arch == 'aarch64'
run: |
wget -q https://github.com/mstorsjo/llvm-mingw/releases/download/20260421/llvm-mingw-20260421-msvcrt-ubuntu-22.04-x86_64.tar.xz
echo "18488138efd8d621930fa85c86c3e3eb9967c0bfa253e1f6f73c5212f7180f31 llvm-mingw-20260421-msvcrt-ubuntu-22.04-x86_64.tar.xz" | sha256sum -c -
tar -Jxf llvm-mingw-20260421-msvcrt-ubuntu-22.04-x86_64.tar.xz
echo "$GITHUB_WORKSPACE/llvm-mingw-20260421-msvcrt-ubuntu-22.04-x86_64/bin" >> $GITHUB_PATH
- name: Build libs (x86_64)
if: matrix.type == 'libs-mingw' && matrix.arch == 'x86_64'
run: cd lib && MINGW=x86_64-w64-mingw32 make -f Makefile.mingw
- name: Build libs (aarch64)
if: success() && matrix.type == 'libs-mingw' && matrix.arch == 'aarch64'
run: cd lib && MINGW=aarch64-w64-mingw32 make -f Makefile.mingw
- name: Install Powershell for vcpkg
if: success() && matrix.type == 'apps-mingw-vcpkg'
run: |
sudo apt install -y wget apt-transport-https software-properties-common doxygen
wget -q https://packages.microsoft.com/config/ubuntu/$(lsb_release -r -s)/packages-microsoft-prod.deb
sudo DEBIAN_FRONTEND=noninteractive apt install -y ./packages-microsoft-prod.deb powershell
- name: Automake vcpkg and cmake
if: success() && (matrix.type == 'apps-mingw-vcpkg' || matrix.type == 'libs-mingw-cmake')
run: ./_autosetup
- name: Configure mingw vcpkg apps
if: success() && matrix.type == 'apps-mingw-vcpkg'
run: |
mingw/ci_configure_apps.sh
- name: Configure libs with cmake vcpkg
if: success() && matrix.type == 'libs-mingw-cmake'
run: |
mingw/ci_configure_libs_cmake.sh
- name: Make mingw vcpkg apps
if: success() && matrix.type == 'apps-mingw-vcpkg'
run: |
mingw/ci_make_apps.sh
- name: Make for cmake
if: success() && matrix.type == 'libs-mingw-cmake'
run:
cmake --build build
- name: Prepare logs on failure
if: ${{ failure() }}
run: python ./deploy/prepare_deployment.py logs
- name: Upload logs on failure
if: ${{ failure() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: mingw_logs_${{ matrix.type }}_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}
path: deploy/logs.7z
- name: Prepare artifacts for deploy
if: success() && ! contains(matrix.type, 'libs')
run: python ./deploy/prepare_deployment.py win_${{ matrix.type }}
- name: Upload artifacts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
if: ${{! contains(matrix.type, 'libs')}}
with:
name: win_${{ matrix.type }}_${{ matrix.arch }}_${{ github.event.pull_request.head.sha }}
path: deploy/win_${{ matrix.type }}.7z