Browse Source

Rename ci to .ci

tags/v1.41.0rc1
David Robertson 2 years ago
parent
commit
33ef86aa25
8 changed files with 6 additions and 6 deletions
  1. +1
    -1
      .ci/postgres-config.yaml
  2. +0
    -0
      .ci/scripts/postgres_exec.py
  3. +0
    -0
      .ci/scripts/test_old_deps.sh
  4. +0
    -0
      .ci/scripts/test_synapse_port_db.sh
  5. +2
    -2
      .ci/sqlite-config.yaml
  6. +0
    -0
      .ci/test_db.db
  7. +0
    -0
      .ci/worker-blacklist
  8. +3
    -3
      .github/workflows/tests.yml

ci/postgres-config.yaml → .ci/postgres-config.yaml View File

@@ -3,7 +3,7 @@
# CI's Docker setup at the point where this file is considered.
server_name: "localhost:8800"

signing_key_path: "ci/test.signing.key"
signing_key_path: ".ci/test.signing.key"

report_stats: false


ci/scripts/postgres_exec.py → .ci/scripts/postgres_exec.py View File


ci/scripts/test_old_deps.sh → .ci/scripts/test_old_deps.sh View File


ci/scripts/test_synapse_port_db.sh → .ci/scripts/test_synapse_port_db.sh View File


ci/sqlite-config.yaml → .ci/sqlite-config.yaml View File

@@ -3,14 +3,14 @@
# schema and run background updates on it.
server_name: "localhost:8800"

signing_key_path: "ci/test.signing.key"
signing_key_path: ".ci/test.signing.key"

report_stats: false

database:
name: "sqlite3"
args:
database: "ci/test_db.db"
database: ".ci/test_db.db"

# Suppress the key server warning.
trusted_key_servers: []

ci/test_db.db → .ci/test_db.db View File


ci/worker-blacklist → .ci/worker-blacklist View File


+ 3
- 3
.github/workflows/tests.yml View File

@@ -142,7 +142,7 @@ jobs:
uses: docker://ubuntu:bionic # For old python and sqlite
with:
workdir: /github/workspace
entrypoint: ci/scripts/test_old_deps.sh
entrypoint: .ci/scripts/test_old_deps.sh
env:
TRIAL_FLAGS: "--jobs=2"
- name: Dump logs
@@ -229,7 +229,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Prepare test blacklist
run: cat sytest-blacklist ci/worker-blacklist > synapse-blacklist-with-workers
run: cat sytest-blacklist .ci/worker-blacklist > synapse-blacklist-with-workers
- name: Run SyTest
run: /bootstrap.sh synapse
working-directory: /src
@@ -278,7 +278,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: ci/scripts/test_synapse_port_db.sh
- run: .ci/scripts/test_synapse_port_db.sh

complement:
if: ${{ !failure() && !cancelled() }}


Loading…
Cancel
Save