Skip to content

Commit

Permalink
did_meta_plugin: reconcile conflict rucio#6059
Browse files Browse the repository at this point in the history
  • Loading branch information
panta-123 committed Mar 4, 2025
2 parents 1eae1be + fe9ef54 commit 64b47c1
Show file tree
Hide file tree
Showing 278 changed files with 15,919 additions and 16,172 deletions.
4 changes: 3 additions & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
Rucio follows a release policy, based on [semantic versioning](https://semver.org),
with **major** (named) releases. Approximately every 4 months we produce a major
release with a version number like **x.0.0** (with x > 0). This release line is
maintained with minor/patch releases published every two weeks.
maintained with minor/patch releases published every two weeks. Once a new major
release line is released, the previous release line becomes inactive and will
not be maintained!

Typically once a year we will designate a release line a **Long-term Support** (LTS)
release line. This release line will be supported with **security** and **critical**
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
schedule:
- cron: '0 3 * * *'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
add_header:
if: github.repository_owner == 'rucio' || github.event_name != 'schedule'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/imagecache.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: Daily image cache build for autotests

on:
workflow_dispatch: {}
workflow_dispatch:
schedule:
- cron: '0 3 * * 1-5'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
setup:
runs-on: ubuntu-latest
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: End to End integration tests

on:
- pull_request
- push
pull_request:
push:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
setup:
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
name: Unit Tests

on:
pull_request:
push:
schedule:
- cron: '0 3 * * *'
pull_request:
push:
schedule:
- cron: '0 3 * * *'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["pypy3.9", "pypy3.10", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -36,6 +40,6 @@ jobs:
run: pytest tests/rucio --cov=lib/rucio

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.5.0
uses: codecov/codecov-action@v5.4.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
10 changes: 7 additions & 3 deletions .github/workflows/vo_tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: VO-specific tests

on:
- pull_request
- push
- workflow_dispatch
pull_request:
push:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
setup:
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
rev: v5.0.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 7.1.1
hooks:
- id: flake8
- repo: local
Expand All @@ -16,7 +16,7 @@ repos:
entry: tools/add_header
language: system
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.3
rev: v0.9.3
hooks:
- id: ruff
args: [ --fix ]
3 changes: 3 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ Individual contributors to the source code
- Aksel Lunde Aase <aksel.lunde.aase@gmail.com>, 2022
- Elena Gazzarrini <gazzarrini.elena@gmail.com>, 2022-2023
- Maximilian Linhoff, <maximilian.linhoff@tu-dortmund.de>, 2024
- Eric Banzuzi, <eric.banzuzi@gmail.com>, 2024
- Paul Millar, <paul.millar@desy.de>, 2025

Organisations employing contributors
------------------------------------
Expand Down Expand Up @@ -95,3 +97,4 @@ Organisations employing contributors
- University of Chicago (USA)
- Purdue University (USA)
- TU Dortmund University (Germany)
- Deutsches Elektronen-Synchrotron DESY (Germany)
Loading

0 comments on commit 64b47c1

Please sign in to comment.