This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into rei/event_size_fixes
- Loading branch information
Showing
401 changed files
with
9,338 additions
and
4,362 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
root = true | ||
|
||
# 4 space indentation | ||
[*.py] | ||
[*.{py,pyi}] | ||
indent_style = space | ||
indent_size = 4 | ||
max_line_length = 88 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Deploy documentation PR preview | ||
|
||
on: | ||
workflow_run: | ||
workflows: [ "Prepare documentation PR preview" ] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
netlify: | ||
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action | ||
# (/~https://github.com/actions/download-artifact/issues/60) so instead we get this mess: | ||
- name: 📥 Download artifact | ||
uses: dawidd6/action-download-artifact@e6e25ac3a2b93187502a8be1ef9e9603afc34925 # v2.24.2 | ||
with: | ||
workflow: docs-pr.yaml | ||
run_id: ${{ github.event.workflow_run.id }} | ||
name: book | ||
path: book | ||
|
||
- name: 📤 Deploy to Netlify | ||
uses: matrix-org/netlify-pr-preview@v1 | ||
with: | ||
path: book | ||
owner: ${{ github.event.workflow_run.head_repository.owner.login }} | ||
branch: ${{ github.event.workflow_run.head_branch }} | ||
revision: ${{ github.event.workflow_run.head_sha }} | ||
token: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
site_id: ${{ secrets.NETLIFY_SITE_ID }} | ||
desc: Documentation preview | ||
deployment_env: PR Documentation Preview |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Prepare documentation PR preview | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- docs/** | ||
|
||
jobs: | ||
pages: | ||
name: GitHub Pages | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup mdbook | ||
uses: peaceiris/actions-mdbook@adeb05db28a0c0004681db83893d56c0388ea9ea # v1.2.0 | ||
with: | ||
mdbook-version: '0.4.17' | ||
|
||
- name: Build the documentation | ||
# mdbook will only create an index.html if we're including docs/README.md in SUMMARY.md. | ||
# However, we're using docs/README.md for other purposes and need to pick a new page | ||
# as the default. Let's opt for the welcome page instead. | ||
run: | | ||
mdbook build | ||
cp book/welcome_and_overview.html book/index.html | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: book | ||
path: book | ||
# We'll only use this in a workflow_run, then we're done with it | ||
retention-days: 1 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# This task does not run complement tests, see tests.yaml instead. | ||
# This task does not build docker images for synapse for use on docker hub, see docker.yaml instead | ||
|
||
name: Store complement-synapse image in ghcr.io | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
schedule: | ||
- cron: '0 5 * * *' | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
required: true | ||
default: 'develop' | ||
type: choice | ||
options: | ||
- develop | ||
- master | ||
|
||
# Only run this action once per pull request/branch; restart if a new commit arrives. | ||
# C.f. https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency | ||
# and https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#github-context | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build and push complement image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout specific branch (debug build) | ||
uses: actions/checkout@v3 | ||
if: github.event_name == 'workflow_dispatch' | ||
with: | ||
ref: ${{ inputs.branch }} | ||
- name: Checkout clean copy of develop (scheduled build) | ||
uses: actions/checkout@v3 | ||
if: github.event_name == 'schedule' | ||
with: | ||
ref: develop | ||
- name: Checkout clean copy of master (on-push) | ||
uses: actions/checkout@v3 | ||
if: github.event_name == 'push' | ||
with: | ||
ref: master | ||
- name: Login to registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Work out labels for complement image | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ghcr.io/${{ github.repository }}/complement-synapse | ||
tags: | | ||
type=schedule,pattern=nightly,enable=${{ github.event_name == 'schedule'}} | ||
type=raw,value=develop,enable=${{ github.event_name == 'schedule' || inputs.branch == 'develop' }} | ||
type=raw,value=latest,enable=${{ github.event_name == 'push' || inputs.branch == 'master' }} | ||
type=sha,format=long | ||
- name: Run scripts-dev/complement.sh to generate complement-synapse:latest image. | ||
run: scripts-dev/complement.sh --build-only | ||
- name: Tag and push generated image | ||
run: | | ||
for TAG in ${{ join(fromJson(steps.meta.outputs.json).tags, ' ') }}; do | ||
echo "tag and push $TAG" | ||
docker tag complement-synapse $TAG | ||
docker push $TAG | ||
done |
Oops, something went wrong.