Skip to content

Commit

Permalink
Merge branch 'master' into dpa_strip
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpanderson authored Jan 28, 2025
2 parents f528020 + 97b7fde commit 6a1a967
Show file tree
Hide file tree
Showing 2,121 changed files with 138,890 additions and 111,589 deletions.
15 changes: 9 additions & 6 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
codecov:
require_ci_to_pass: yes
require_ci_to_pass: true
notify:
after_n_builds: 3
wait_for_ci: yes
wait_for_ci: true

coverage:
status:
Expand All @@ -14,13 +14,16 @@ coverage:
comment:
layout: "diff, files"
behavior: default
require_changes: yes # if true: only post the comment if coverage changes
require_base: no # [yes :: must have a base report to post]
require_head: yes # [yes :: must have a head report to post]
branches:
require_changes: true # if true: only post the comment if coverage changes
require_base: false # [true :: must have a base report to post]
require_head: true # [true :: must have a head report to post]
branches:
- master
after_n_builds: 3

github_checks:
annotations: false

flags:
# filter the folder(s) you wish to measure by that flag
api:
Expand Down
25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Bug report
description: Create a report to help us improve.
body:
- type: textarea
attributes:
label: Describe the bug
placeholder: "<!-- A clear and concise description of what the bug is. -->"
validations:
required: true
- type: textarea
attributes:
label: Steps to reproduce
placeholder: |
1.
2.
validations:
required: false
- type: textarea
attributes:
label: Expected behavior
placeholder: "<!-- A clear and concise description of what you expected to happen. -->"
validations:
required: false
- type: textarea
attributes:
label: Screenshots
placeholder: "<!-- If applicable, add screenshots to help explain your problem. -->"
validations:
required: false
- type: textarea
attributes:
label: System information
placeholder: |
- OS:
- BOINC Version:
validations:
required: false
- type: textarea
attributes:
label: Additional context
placeholder: "<!-- Add any other context about the problem here. -->"
validations:
required: false
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Feature request
description: Suggest an idea for this project.
body:
- type: textarea
attributes:
label: Describe the problem
placeholder: "<!-- A clear and concise description of what the problem is. e.g. I'm always frustrated when [...] -->"
validations:
required: true
- type: textarea
attributes:
label: Describe the solution you'd like
placeholder: "<!-- A clear and concise description of what you want to happen. -->"
validations:
required: false
- type: textarea
attributes:
label: Additional context
placeholder: "<!-- A clear and concise description of any alternative solutions or features you've considered. -->"
validations:
required: false
7 changes: 0 additions & 7 deletions .github/ISSUE_TEMPLATE/other-issues.md

This file was deleted.

9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/other-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Other issues
description: Use this template for any other issues.
body:
- type: textarea
attributes:
label: Describe the bug
placeholder: "<!-- A clear and concise description of what the bug is. -->"
validations:
required: true
58 changes: 58 additions & 0 deletions .github/workflows/all_projects_list_xml_update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# 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: all_projects_list.xml Update
on:
schedule:
- cron: '0 0 * * 0'

jobs:
build:
if: github.repository == 'BOINC/boinc'
name: ${{ matrix.type }}
runs-on: ubuntu-latest
strategy:
matrix:
type: [all_projects_list_xml_update]
fail-fast: false
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 2
- name: Download latest all_projects_list.xml
if: success()
run: |
curl https://boinc.berkeley.edu/project_list.php --output ./win_build/installerv2/redist/all_projects_list.xml
- name: Check file was updated
if: success()
run: |
set +e
git diff --exit-code
echo "PR_REQUIRED=$?" >> $GITHUB_ENV
- name: Create PR
if: ${{ success() && env.PR_REQUIRED == 1 }}
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f
with:
commit-message: Update all_projects_list.xml
title: Update all_projects_list.xml
body: |
This PR was automatically created by a GitHub Action.
branch: all_projects_list_xml_update
base: master
delete-branch: true
add-paths: |
win_build/installerv2/redist/all_projects_list.xml
Loading

0 comments on commit 6a1a967

Please sign in to comment.