mirror of https://github.com/BOINC/boinc.git
135 lines
4.5 KiB
YAML
135 lines
4.5 KiB
YAML
# This file is part of BOINC.
|
|
# http://boinc.berkeley.edu
|
|
# Copyright (C) 2023 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: Flutter-Windows
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
schedule:
|
|
- cron: '0 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 }}-flutter-build
|
|
runs-on: windows-2019
|
|
strategy:
|
|
matrix:
|
|
type: [windows, web, winuwp]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Setup msbuild
|
|
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce
|
|
|
|
- name: Setup flutter
|
|
uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1
|
|
with:
|
|
channel: 'dev'
|
|
|
|
- name: Setup winuwp Desktop
|
|
if: matrix.type == 'winuwp'
|
|
run: flutter config --enable-windows-uwp-desktop
|
|
|
|
- name: Setup windows Desktop
|
|
if: matrix.type == 'windows'
|
|
run: flutter config --enable-windows-desktop
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
|
|
if: matrix.type == 'windows'
|
|
with:
|
|
path: |
|
|
${{ github.workspace }}\3rdParty\Windows\cuda\
|
|
key: windows-flutter-x64-Release-${{ hashFiles('win_build/vcpkg_3rdparty_dependencies_vs2019.vcxproj', '.github/workflows/flutter-windows.yml') }}
|
|
|
|
- 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: Build windows client
|
|
if: matrix.type == 'windows'
|
|
run: samples\flutter\ci_build_windows.bat
|
|
|
|
- name: Install flutter dependencies
|
|
run: cd samples/flutter/boinc/ && flutter pub get
|
|
|
|
- name: Build winuwp
|
|
if: matrix.type == 'winuwp'
|
|
run: |
|
|
cd samples/flutter/
|
|
flutter create boinc
|
|
cd boinc/
|
|
flutter build winuwp
|
|
|
|
- name: Build windows
|
|
if: matrix.type == 'windows'
|
|
run: |
|
|
cd samples/flutter/
|
|
flutter create boinc
|
|
cd boinc/
|
|
flutter build windows
|
|
|
|
- name: Build web
|
|
if: matrix.type == 'web'
|
|
run: |
|
|
cd samples/flutter/
|
|
flutter create boinc
|
|
cd boinc/
|
|
flutter build web
|
|
|
|
- name: Prepare windows
|
|
if: success() && matrix.type == 'windows'
|
|
run: |
|
|
7z.exe a -t7z -mx=9 deploy/flutter_${{ matrix.type }}.7z -r0 samples/flutter/boinc/build/windows/runner/Release/*
|
|
|
|
- name: Prepare web
|
|
if: success() && matrix.type == 'web'
|
|
run: |
|
|
7z.exe a -t7z -mx=9 deploy/flutter_${{ matrix.type }}.7z -r0 samples/flutter/boinc/build/web/*
|
|
|
|
- name: Prepare winuwp
|
|
if: success() && matrix.type == 'winuwp'
|
|
run: |
|
|
7z.exe a -t7z -mx=9 deploy/flutter_${{ matrix.type }}.7z -r0 samples/flutter/boinc/build/winuwp/runner_uwp/Release/*
|
|
|
|
- name: Upload ${{ matrix.type }}
|
|
if: success()
|
|
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
|
|
with:
|
|
name: ${{ matrix.type }}_flutter_${{ github.event.pull_request.head.sha }}
|
|
path: deploy/flutter_${{ matrix.type }}.7z
|