Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/pr_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ name: OpenFL PR Pipeline
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- '**.md'
- 'docs/**'
- '.dockerignore'
- '.gitattributes'
- '.gitignore'
- 'CITATION'
- 'CODEOWNERS'
workflow_dispatch:

concurrency:
Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Windows (latest)

on:
workflow_call:
schedule:
- cron: '0 0 * * *'

permissions:
contents: read
Expand All @@ -14,12 +12,13 @@ env:

jobs:
pytest-coverage: # from pytest_coverage.yml
if: github.event.pull_request.draft == false
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
runs-on: windows-latest
timeout-minutes: 15

steps:
- uses: actions/checkout@v4
- name: Set up Python 3
Expand All @@ -38,6 +37,7 @@ jobs:
coverage report

keras_mnist: # from taskrunner.yml - keras/mnist
if: github.event.pull_request.draft == false
runs-on: windows-latest
timeout-minutes: 15
steps:
Expand All @@ -55,12 +55,9 @@ jobs:
python -m tests.github.test_hello_federation --template keras/mnist --fed_workspace aggregator --col1 col1 --col2 col2 --rounds-to-train 3 --save-model output_model

torch_mnist_eden_compression: # from taskrunner_eden_pipeline.yml - torch/mnist_eden_compression
if: github.event.pull_request.draft == false && contains(github.event.pull_request.labels.*.name, 'eden_compression')
runs-on: windows-latest
timeout-minutes: 15
if: |
(github.event_name == 'schedule' && github.repository_owner == 'securefederatedai') ||
(github.event_name == 'workflow_dispatch') ||
(github.event.pull_request.draft == false && contains(github.event.pull_request.labels.*.name, 'eden_compression'))
steps:
- uses: actions/checkout@v4
- name: Set up Python 3
Expand All @@ -76,6 +73,7 @@ jobs:
python -m tests.github.test_hello_federation --template torch/mnist_eden_compression --fed_workspace aggregator --col1 col1 --col2 col2 --rounds-to-train 3

torch_mnist_straggler_check: # from straggler-handling.yml - torch/mnist_straggler_check
if: github.event.pull_request.draft == false
runs-on: windows-latest
timeout-minutes: 15
steps:
Expand All @@ -90,4 +88,4 @@ jobs:
pip install .
- name: Test Straggler Handling Interface
run: |
python -m tests.github.test_hello_federation --template torch/mnist_straggler_check --fed_workspace aggregator --col1 col1 --col2 col2 --rounds-to-train 3
python -m tests.github.test_hello_federation --template torch/mnist_straggler_check --fed_workspace aggregator --col1 col1 --col2 col2 --rounds-to-train 3
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<img src="https://github.com/securefederatedai/artwork/blob/main/PNG/OpenFL%20Logo%20-%20color.png?raw=true" width="70%">
</div>


<div align="center">

[![PyPI version](https://img.shields.io/pypi/v/openfl)](https://pypi.org/project/openfl/)
Expand Down
1 change: 0 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ Round
fx
troubleshooting


.. toctree::
:hidden:
:caption: Notes
Expand Down
Loading