mail_passwd.php: allow projects to add their own message at end of page about password reset email. #5339
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux-MinGW | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '0 12 * * 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 }}-build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
type: [libs-mingw, apps-mingw, apps-mingw-vcpkg, libs-mingw-cmake] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 -qq update | |
sudo apt-get install -y mingw-w64 mingw-w64-tools mingw-w64-x86-64-dev mingw-w64-i686-dev tar curl zip unzip p7zip-full | |
- name: Make libs with mingw | |
if: success() && matrix.type == 'libs-mingw' | |
run: cd lib && MINGW=x86_64-w64-mingw32 make -f Makefile.mingw | |
- name: Make apps with mingw | |
if: success() && matrix.type == 'apps-mingw' | |
run: cd lib && MINGW=x86_64-w64-mingw32 make -f Makefile.mingw wrapper | |
- name: Install Powershell for vcpkg | |
if: success() && matrix.type == 'apps-mingw-vcpkg' | |
run: | | |
POWERSHELL_DEPS="wget apt-transport-https software-properties-common" | |
# Install pre-requisite packages of PowerShell | |
sudo apt install -y $POWERSHELL_DEPS doxygen | |
# Download the Microsoft repository GPG keys | |
VERSION=$(lsb_release -r -s) | |
wget -q https://packages.microsoft.com/config/ubuntu/$VERSION/packages-microsoft-prod.deb | |
# Register the Microsoft repository GPG keys | |
sudo dpkg -i packages-microsoft-prod.deb | |
# Update the list of packages after we added packages.microsoft.com | |
sudo apt update | |
# Install PowerShell | |
sudo apt install -y powershell | |
- name: Automake vcpkg and cmake | |
if: success() && (contains(matrix.type, 'vcpkg') || contains(matrix.type, '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() && endsWith(matrix.type, '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@v3 | |
with: | |
name: mingw_logs_${{ matrix.type }}_${{ 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@v3 | |
if: ${{! contains(matrix.type, 'libs')}} | |
with: | |
name: win_${{ matrix.type }}_${{ github.event.pull_request.head.sha }} | |
path: deploy/win_${{ matrix.type }}.7z |