mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a1b284407 |
@@ -26,7 +26,3 @@ max_line_length = 98
|
|||||||
[*.yml]
|
[*.yml]
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
|
||||||
[*.json]
|
|
||||||
indent_size = 4
|
|
||||||
indent_style = space
|
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
dotenv_if_exists
|
dotenv_if_exists
|
||||||
|
|
||||||
if [ -f /etc/os-release ] && grep -q '^ID=nixos' /etc/os-release; then
|
# use flake ".#${DIRENV_DEVSHELL:-default}"
|
||||||
use flake ".#${DIRENV_DEVSHELL:-default}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
PATH_add bin
|
PATH_add bin
|
||||||
|
|||||||
@@ -1,108 +0,0 @@
|
|||||||
name: create-manifest
|
|
||||||
description: |
|
|
||||||
Create and push a multi-platform Docker manifest from individual platform digests.
|
|
||||||
Handles downloading digests, creating manifest lists, and pushing to registry.
|
|
||||||
|
|
||||||
inputs:
|
|
||||||
digest_pattern:
|
|
||||||
description: Glob pattern to match digest artifacts (e.g. "digests-linux-{amd64,arm64}")
|
|
||||||
required: true
|
|
||||||
tag_suffix:
|
|
||||||
description: Suffix to add to all Docker tags (e.g. "-maxperf")
|
|
||||||
required: false
|
|
||||||
default: ""
|
|
||||||
images:
|
|
||||||
description: Container registry images (newline-separated)
|
|
||||||
required: true
|
|
||||||
registry_user:
|
|
||||||
description: Registry username for authentication
|
|
||||||
required: false
|
|
||||||
registry_password:
|
|
||||||
description: Registry password for authentication
|
|
||||||
required: false
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
version:
|
|
||||||
description: The version tag created for the manifest
|
|
||||||
value: ${{ steps.meta.outputs.version }}
|
|
||||||
tags:
|
|
||||||
description: All tags created for the manifest
|
|
||||||
value: ${{ steps.meta.outputs.tags }}
|
|
||||||
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Download digests
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
uses: forgejo/download-artifact@v4
|
|
||||||
with:
|
|
||||||
path: /tmp/digests
|
|
||||||
pattern: ${{ inputs.digest_pattern }}
|
|
||||||
merge-multiple: true
|
|
||||||
|
|
||||||
- name: Login to builtin registry
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
registry: ${{ env.BUILTIN_REGISTRY }}
|
|
||||||
username: ${{ inputs.registry_user }}
|
|
||||||
password: ${{ inputs.registry_password }}
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
with:
|
|
||||||
# Use persistent BuildKit if BUILDKIT_ENDPOINT is set (e.g. tcp://buildkit:8125)
|
|
||||||
driver: ${{ env.BUILDKIT_ENDPOINT != '' && 'remote' || 'docker-container' }}
|
|
||||||
endpoint: ${{ env.BUILDKIT_ENDPOINT || '' }}
|
|
||||||
|
|
||||||
- name: Extract metadata (tags) for Docker
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
flavor: |
|
|
||||||
suffix=${{ inputs.tag_suffix }},onlatest=true
|
|
||||||
tags: |
|
|
||||||
type=semver,pattern={{version}},prefix=v
|
|
||||||
type=semver,pattern={{major}}.{{minor}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.0.') }},prefix=v
|
|
||||||
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }},prefix=v
|
|
||||||
type=ref,event=branch,prefix=${{ format('refs/heads/{0}', github.event.repository.default_branch) != github.ref && 'branch-' || '' }},
|
|
||||||
type=ref,event=pr
|
|
||||||
type=sha,format=short
|
|
||||||
type=raw,value=latest${{ inputs.tag_suffix }},enable=${{ startsWith(github.ref, 'refs/tags/v') }},priority=1100
|
|
||||||
images: ${{ inputs.images }}
|
|
||||||
# default labels & annotations: https://github.com/docker/metadata-action/blob/master/src/meta.ts#L509
|
|
||||||
env:
|
|
||||||
DOCKER_METADATA_ANNOTATIONS_LEVELS: index
|
|
||||||
|
|
||||||
- name: Create manifest list and push
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
working-directory: /tmp/digests
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
IMAGES: ${{ inputs.images }}
|
|
||||||
run: |
|
|
||||||
set -o xtrace
|
|
||||||
IFS=$'\n'
|
|
||||||
IMAGES_LIST=($IMAGES)
|
|
||||||
ANNOTATIONS_LIST=($DOCKER_METADATA_OUTPUT_ANNOTATIONS)
|
|
||||||
TAGS_LIST=($DOCKER_METADATA_OUTPUT_TAGS)
|
|
||||||
for REPO in "${IMAGES_LIST[@]}"; do
|
|
||||||
docker buildx imagetools create \
|
|
||||||
$(for tag in "${TAGS_LIST[@]}"; do echo "--tag"; echo "$tag"; done) \
|
|
||||||
$(for annotation in "${ANNOTATIONS_LIST[@]}"; do echo "--annotation"; echo "$annotation"; done) \
|
|
||||||
$(for reference in *; do printf "$REPO@sha256:%s\n" $reference; done)
|
|
||||||
done
|
|
||||||
|
|
||||||
- name: Inspect image
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
IMAGES: ${{ inputs.images }}
|
|
||||||
run: |
|
|
||||||
set -o xtrace
|
|
||||||
IMAGES_LIST=($IMAGES)
|
|
||||||
for REPO in "${IMAGES_LIST[@]}"; do
|
|
||||||
docker buildx imagetools inspect $REPO:${{ steps.meta.outputs.version }}
|
|
||||||
done
|
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
name: prefligit
|
||||||
|
description: |
|
||||||
|
Runs prefligit, pre-commit reimplemented in Rust.
|
||||||
|
inputs:
|
||||||
|
extra_args:
|
||||||
|
description: options to pass to pre-commit run
|
||||||
|
required: false
|
||||||
|
default: '--all-files'
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: composite
|
||||||
|
steps:
|
||||||
|
- name: Install uv
|
||||||
|
uses: https://github.com/astral-sh/setup-uv@v6
|
||||||
|
with:
|
||||||
|
enable-cache: true
|
||||||
|
ignore-nothing-to-cache: true
|
||||||
|
- name: Install Prefligit
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prefligit/releases/download/v0.0.10/prefligit-installer.sh | sh
|
||||||
|
- uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ~/.cache/prefligit
|
||||||
|
key: prefligit-0|${{ hashFiles('.pre-commit-config.yaml') }}
|
||||||
|
- run: prefligit run --show-diff-on-failure --color=always -v ${{ inputs.extra_args }}
|
||||||
|
shell: bash
|
||||||
@@ -1,169 +0,0 @@
|
|||||||
name: prepare-docker-build
|
|
||||||
description: |
|
|
||||||
Prepare the Docker build environment for Continuwuity builds.
|
|
||||||
Sets up Rust toolchain, Docker Buildx, caching, and extracts metadata for Docker builds.
|
|
||||||
|
|
||||||
inputs:
|
|
||||||
platform:
|
|
||||||
description: Target platform (e.g. linux/amd64, linux/arm64)
|
|
||||||
required: true
|
|
||||||
slug:
|
|
||||||
description: Platform slug for artifact naming (e.g. linux-amd64, linux-arm64)
|
|
||||||
required: true
|
|
||||||
target_cpu:
|
|
||||||
description: Target CPU architecture (e.g. haswell, empty for base)
|
|
||||||
required: false
|
|
||||||
default: ""
|
|
||||||
profile:
|
|
||||||
description: Cargo build profile (release or release-max-perf)
|
|
||||||
required: true
|
|
||||||
images:
|
|
||||||
description: Container registry images (newline-separated)
|
|
||||||
required: true
|
|
||||||
registry_user:
|
|
||||||
description: Registry username for authentication
|
|
||||||
required: false
|
|
||||||
registry_password:
|
|
||||||
description: Registry password for authentication
|
|
||||||
required: false
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
cpu_suffix:
|
|
||||||
description: CPU suffix for artifact naming
|
|
||||||
value: ${{ steps.cpu-suffix.outputs.suffix }}
|
|
||||||
metadata_labels:
|
|
||||||
description: Docker labels for the image
|
|
||||||
value: ${{ steps.meta.outputs.labels }}
|
|
||||||
metadata_annotations:
|
|
||||||
description: Docker annotations for the image
|
|
||||||
value: ${{ steps.meta.outputs.annotations }}
|
|
||||||
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Set CPU suffix variable
|
|
||||||
id: cpu-suffix
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
if [[ -n "${{ inputs.target_cpu }}" ]]; then
|
|
||||||
echo "suffix=-${{ inputs.target_cpu }}" >> $GITHUB_OUTPUT
|
|
||||||
echo "CPU_SUFFIX=-${{ inputs.target_cpu }}" >> $GITHUB_ENV
|
|
||||||
else
|
|
||||||
echo "suffix=" >> $GITHUB_OUTPUT
|
|
||||||
echo "CPU_SUFFIX=" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Echo matrix configuration
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "Platform: ${{ inputs.platform }}"
|
|
||||||
echo "Slug: ${{ inputs.slug }}"
|
|
||||||
echo "Target CPU: ${{ inputs.target_cpu }}"
|
|
||||||
echo "Profile: ${{ inputs.profile }}"
|
|
||||||
|
|
||||||
- name: Install rust
|
|
||||||
if: ${{ env.BUILDKIT_ENDPOINT == '' }}
|
|
||||||
id: rust-toolchain
|
|
||||||
uses: ./.forgejo/actions/rust-toolchain
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
with:
|
|
||||||
# Use persistent BuildKit if BUILDKIT_ENDPOINT is set (e.g. tcp://buildkit:8125)
|
|
||||||
driver: ${{ env.BUILDKIT_ENDPOINT != '' && 'remote' || 'docker-container' }}
|
|
||||||
endpoint: ${{ env.BUILDKIT_ENDPOINT || '' }}
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
if: ${{ env.BUILDKIT_ENDPOINT == '' }}
|
|
||||||
uses: docker/setup-qemu-action@v3
|
|
||||||
|
|
||||||
- name: Login to builtin registry
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
registry: ${{ env.BUILTIN_REGISTRY }}
|
|
||||||
username: ${{ inputs.registry_user }}
|
|
||||||
password: ${{ inputs.registry_password }}
|
|
||||||
|
|
||||||
- name: Extract metadata (labels, annotations) for Docker
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: ${{ inputs.images }}
|
|
||||||
# default labels & annotations: https://github.com/docker/metadata-action/blob/master/src/meta.ts#L509
|
|
||||||
env:
|
|
||||||
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
|
|
||||||
|
|
||||||
- name: Get short git commit SHA
|
|
||||||
id: sha
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
calculatedSha=$(git rev-parse --short ${{ github.sha }})
|
|
||||||
echo "COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV
|
|
||||||
echo "Short SHA: $calculatedSha"
|
|
||||||
|
|
||||||
- name: Get Git commit timestamps
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
timestamp=$(git log -1 --pretty=%ct)
|
|
||||||
echo "TIMESTAMP=$timestamp" >> $GITHUB_ENV
|
|
||||||
echo "Commit timestamp: $timestamp"
|
|
||||||
|
|
||||||
- uses: ./.forgejo/actions/timelord
|
|
||||||
id: timelord
|
|
||||||
|
|
||||||
- name: Cache Rust registry
|
|
||||||
if: ${{ env.BUILDKIT_ENDPOINT == '' }}
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
.cargo/git
|
|
||||||
.cargo/git/checkouts
|
|
||||||
.cargo/registry
|
|
||||||
.cargo/registry/src
|
|
||||||
key: continuwuity-rust-registry-image-${{hashFiles('**/Cargo.lock') }}
|
|
||||||
|
|
||||||
- name: Cache cargo target
|
|
||||||
if: ${{ env.BUILDKIT_ENDPOINT == '' }}
|
|
||||||
id: cache-cargo-target
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
cargo-target${{ env.CPU_SUFFIX }}-${{ inputs.slug }}-${{ inputs.profile }}
|
|
||||||
key: continuwuity-cargo-target${{ env.CPU_SUFFIX }}-${{ inputs.slug }}-${{ inputs.profile }}-${{hashFiles('**/Cargo.lock') }}-${{steps.rust-toolchain.outputs.rustc_version}}
|
|
||||||
|
|
||||||
- name: Cache apt cache
|
|
||||||
if: ${{ env.BUILDKIT_ENDPOINT == '' }}
|
|
||||||
id: cache-apt
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
var-cache-apt-${{ inputs.slug }}
|
|
||||||
key: continuwuity-var-cache-apt-${{ inputs.slug }}
|
|
||||||
|
|
||||||
- name: Cache apt lib
|
|
||||||
if: ${{ env.BUILDKIT_ENDPOINT == '' }}
|
|
||||||
id: cache-apt-lib
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
var-lib-apt-${{ inputs.slug }}
|
|
||||||
key: continuwuity-var-lib-apt-${{ inputs.slug }}
|
|
||||||
|
|
||||||
- name: inject cache into docker
|
|
||||||
if: ${{ env.BUILDKIT_ENDPOINT == '' }}
|
|
||||||
uses: https://github.com/reproducible-containers/buildkit-cache-dance@v3.3.0
|
|
||||||
with:
|
|
||||||
cache-map: |
|
|
||||||
{
|
|
||||||
".cargo/registry": "/usr/local/cargo/registry",
|
|
||||||
".cargo/git/db": "/usr/local/cargo/git/db",
|
|
||||||
"cargo-target${{ env.CPU_SUFFIX }}-${{ inputs.slug }}-${{ inputs.profile }}": {
|
|
||||||
"target": "/app/target",
|
|
||||||
"id": "cargo-target${{ env.CPU_SUFFIX }}-${{ inputs.slug }}-${{ inputs.profile }}"
|
|
||||||
},
|
|
||||||
"var-cache-apt-${{ inputs.slug }}": "/var/cache/apt",
|
|
||||||
"var-lib-apt-${{ inputs.slug }}": "/var/lib/apt",
|
|
||||||
"${{ steps.timelord.outputs.database-path }}":"/timelord"
|
|
||||||
}
|
|
||||||
skip-extraction: ${{ steps.cache.outputs.cache-hit }}
|
|
||||||
@@ -40,7 +40,7 @@ runs:
|
|||||||
!~/.rustup/tmp
|
!~/.rustup/tmp
|
||||||
!~/.rustup/downloads
|
!~/.rustup/downloads
|
||||||
# Requires repo to be cloned if toolchain is not specified
|
# Requires repo to be cloned if toolchain is not specified
|
||||||
key: continuwuity-${{ runner.os }}-rustup-${{ inputs.toolchain || hashFiles('**/rust-toolchain.toml') }}
|
key: ${{ runner.os }}-rustup-${{ inputs.toolchain || hashFiles('**/rust-toolchain.toml') }}
|
||||||
- name: Install Rust toolchain
|
- name: Install Rust toolchain
|
||||||
if: steps.rustup-version.outputs.version == ''
|
if: steps.rustup-version.outputs.version == ''
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
@@ -2,14 +2,20 @@ name: sccache
|
|||||||
description: |
|
description: |
|
||||||
Install sccache for caching builds in GitHub Actions.
|
Install sccache for caching builds in GitHub Actions.
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
token:
|
||||||
|
description: 'A Github PAT'
|
||||||
|
required: false
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Install sccache
|
- name: Install sccache
|
||||||
uses: https://git.tomfos.tr/tom/sccache-action@v1
|
uses: https://github.com/mozilla-actions/sccache-action@v0.0.9
|
||||||
|
with:
|
||||||
|
token: ${{ inputs.token }}
|
||||||
- name: Configure sccache
|
- name: Configure sccache
|
||||||
uses: https://github.com/actions/github-script@v8
|
uses: https://github.com/actions/github-script@v7
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
core.exportVariable('ACTIONS_RESULTS_URL', process.env.ACTIONS_RESULTS_URL || '');
|
core.exportVariable('ACTIONS_RESULTS_URL', process.env.ACTIONS_RESULTS_URL || '');
|
||||||
|
|||||||
@@ -1,167 +0,0 @@
|
|||||||
name: setup-llvm-with-apt
|
|
||||||
description: |
|
|
||||||
Set up LLVM toolchain with APT package management and smart caching.
|
|
||||||
Supports cross-compilation architectures and additional package installation.
|
|
||||||
|
|
||||||
Creates symlinks in /usr/bin: clang, clang++, lld, llvm-ar, llvm-ranlib
|
|
||||||
|
|
||||||
inputs:
|
|
||||||
dpkg-arch:
|
|
||||||
description: 'Debian architecture for cross-compilation (e.g. arm64)'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
extra-packages:
|
|
||||||
description: 'Additional APT packages to install (space-separated)'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
llvm-version:
|
|
||||||
description: 'LLVM version to install'
|
|
||||||
required: false
|
|
||||||
default: '20'
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
llvm-version:
|
|
||||||
description: 'Installed LLVM version'
|
|
||||||
value: ${{ steps.configure.outputs.version }}
|
|
||||||
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Detect runner OS
|
|
||||||
id: runner-os
|
|
||||||
uses: https://git.tomfos.tr/actions/detect-versions@v1
|
|
||||||
|
|
||||||
- name: Configure cross-compilation architecture
|
|
||||||
if: inputs.dpkg-arch != ''
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "🏗️ Adding ${{ inputs.dpkg-arch }} architecture"
|
|
||||||
sudo dpkg --add-architecture ${{ inputs.dpkg-arch }}
|
|
||||||
|
|
||||||
# Restrict default sources to amd64
|
|
||||||
sudo sed -i 's/^deb http/deb [arch=amd64] http/g' /etc/apt/sources.list
|
|
||||||
sudo sed -i 's/^deb https/deb [arch=amd64] https/g' /etc/apt/sources.list
|
|
||||||
|
|
||||||
# Add ports sources for foreign architecture
|
|
||||||
sudo tee /etc/apt/sources.list.d/${{ inputs.dpkg-arch }}.list > /dev/null <<EOF
|
|
||||||
deb [arch=${{ inputs.dpkg-arch }}] http://ports.ubuntu.com/ubuntu-ports/ jammy main restricted universe multiverse
|
|
||||||
deb [arch=${{ inputs.dpkg-arch }}] http://ports.ubuntu.com/ubuntu-ports/ jammy-updates main restricted universe multiverse
|
|
||||||
deb [arch=${{ inputs.dpkg-arch }}] http://ports.ubuntu.com/ubuntu-ports/ jammy-security main restricted universe multiverse
|
|
||||||
EOF
|
|
||||||
|
|
||||||
echo "✅ Architecture ${{ inputs.dpkg-arch }} configured"
|
|
||||||
|
|
||||||
- name: Start LLVM cache group
|
|
||||||
shell: bash
|
|
||||||
run: echo "::group::📦 Restoring LLVM cache"
|
|
||||||
|
|
||||||
- name: Check for LLVM cache
|
|
||||||
id: cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/usr/bin/clang-*
|
|
||||||
/usr/bin/clang++-*
|
|
||||||
/usr/bin/lld-*
|
|
||||||
/usr/bin/llvm-*
|
|
||||||
/usr/lib/llvm-*/
|
|
||||||
/usr/lib/x86_64-linux-gnu/libLLVM*.so*
|
|
||||||
/usr/lib/x86_64-linux-gnu/libclang*.so*
|
|
||||||
/etc/apt/sources.list.d/archive_uri-*
|
|
||||||
/etc/apt/trusted.gpg.d/apt.llvm.org.asc
|
|
||||||
key: continuwuity-llvm-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-v${{ inputs.llvm-version }}-${{ hashFiles('**/Cargo.lock', 'rust-toolchain.toml') }}
|
|
||||||
|
|
||||||
- name: End LLVM cache group
|
|
||||||
shell: bash
|
|
||||||
run: echo "::endgroup::"
|
|
||||||
|
|
||||||
- name: Check and install LLVM if needed
|
|
||||||
id: llvm-setup
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "🔍 Checking for LLVM ${{ inputs.llvm-version }}..."
|
|
||||||
|
|
||||||
# Check both binaries and libraries exist
|
|
||||||
if [ -f "/usr/bin/clang-${{ inputs.llvm-version }}" ] && \
|
|
||||||
[ -f "/usr/bin/clang++-${{ inputs.llvm-version }}" ] && \
|
|
||||||
[ -f "/usr/bin/lld-${{ inputs.llvm-version }}" ] && \
|
|
||||||
([ -f "/usr/lib/x86_64-linux-gnu/libLLVM.so.${{ inputs.llvm-version }}.1" ] || \
|
|
||||||
[ -f "/usr/lib/x86_64-linux-gnu/libLLVM-${{ inputs.llvm-version }}.so.1" ] || \
|
|
||||||
[ -f "/usr/lib/llvm-${{ inputs.llvm-version }}/lib/libLLVM.so" ]); then
|
|
||||||
echo "✅ LLVM ${{ inputs.llvm-version }} found and verified"
|
|
||||||
echo "needs-install=false" >> $GITHUB_OUTPUT
|
|
||||||
else
|
|
||||||
echo "📦 LLVM ${{ inputs.llvm-version }} not found or incomplete - installing..."
|
|
||||||
|
|
||||||
echo "::group::🔧 Installing LLVM ${{ inputs.llvm-version }}"
|
|
||||||
wget -O - https://apt.llvm.org/llvm.sh | bash -s -- ${{ inputs.llvm-version }}
|
|
||||||
echo "::endgroup::"
|
|
||||||
|
|
||||||
if [ ! -f "/usr/bin/clang-${{ inputs.llvm-version }}" ]; then
|
|
||||||
echo "❌ Failed to install LLVM ${{ inputs.llvm-version }}"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "✅ Installed LLVM ${{ inputs.llvm-version }}"
|
|
||||||
echo "needs-install=true" >> $GITHUB_OUTPUT
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Prepare for additional packages
|
|
||||||
if: inputs.extra-packages != ''
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
# Update APT if LLVM was cached (installer script already does apt-get update)
|
|
||||||
if [[ "${{ steps.llvm-setup.outputs.needs-install }}" != "true" ]]; then
|
|
||||||
echo "::group::📦 Running apt-get update (LLVM cached, extra packages needed)"
|
|
||||||
sudo apt-get update
|
|
||||||
echo "::endgroup::"
|
|
||||||
fi
|
|
||||||
echo "::group::📦 Installing additional packages"
|
|
||||||
|
|
||||||
- name: Install additional packages
|
|
||||||
if: inputs.extra-packages != ''
|
|
||||||
uses: https://github.com/awalsh128/cache-apt-pkgs-action@latest
|
|
||||||
with:
|
|
||||||
packages: ${{ inputs.extra-packages }}
|
|
||||||
version: 1.0
|
|
||||||
|
|
||||||
- name: End package installation group
|
|
||||||
if: inputs.extra-packages != ''
|
|
||||||
shell: bash
|
|
||||||
run: echo "::endgroup::"
|
|
||||||
|
|
||||||
- name: Configure LLVM environment
|
|
||||||
id: configure
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "::group::🔧 Configuring LLVM ${{ inputs.llvm-version }} environment"
|
|
||||||
|
|
||||||
# Create symlinks
|
|
||||||
sudo ln -sf "/usr/bin/clang-${{ inputs.llvm-version }}" /usr/bin/clang
|
|
||||||
sudo ln -sf "/usr/bin/clang++-${{ inputs.llvm-version }}" /usr/bin/clang++
|
|
||||||
sudo ln -sf "/usr/bin/lld-${{ inputs.llvm-version }}" /usr/bin/lld
|
|
||||||
sudo ln -sf "/usr/bin/llvm-ar-${{ inputs.llvm-version }}" /usr/bin/llvm-ar
|
|
||||||
sudo ln -sf "/usr/bin/llvm-ranlib-${{ inputs.llvm-version }}" /usr/bin/llvm-ranlib
|
|
||||||
echo " ✓ Created symlinks"
|
|
||||||
|
|
||||||
# Setup library paths
|
|
||||||
LLVM_LIB_PATH="/usr/lib/llvm-${{ inputs.llvm-version }}/lib"
|
|
||||||
if [ -d "$LLVM_LIB_PATH" ]; then
|
|
||||||
echo "LD_LIBRARY_PATH=${LLVM_LIB_PATH}:${LD_LIBRARY_PATH:-}" >> $GITHUB_ENV
|
|
||||||
echo "LIBCLANG_PATH=${LLVM_LIB_PATH}" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
echo "$LLVM_LIB_PATH" | sudo tee "/etc/ld.so.conf.d/llvm-${{ inputs.llvm-version }}.conf" > /dev/null
|
|
||||||
sudo ldconfig
|
|
||||||
echo " ✓ Configured library paths"
|
|
||||||
else
|
|
||||||
# Fallback to standard library location
|
|
||||||
if [ -d "/usr/lib/x86_64-linux-gnu" ]; then
|
|
||||||
echo "LIBCLANG_PATH=/usr/lib/x86_64-linux-gnu" >> $GITHUB_ENV
|
|
||||||
echo " ✓ Using fallback library path"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Set output
|
|
||||||
echo "version=${{ inputs.llvm-version }}" >> $GITHUB_OUTPUT
|
|
||||||
echo "::endgroup::"
|
|
||||||
echo "✅ LLVM ready: $(clang --version | head -1)"
|
|
||||||
@@ -1,239 +0,0 @@
|
|||||||
name: setup-rust
|
|
||||||
description: |
|
|
||||||
Set up Rust toolchain with sccache for compilation caching.
|
|
||||||
Respects rust-toolchain.toml by default or accepts explicit version override.
|
|
||||||
|
|
||||||
inputs:
|
|
||||||
cache-key-suffix:
|
|
||||||
description: 'Optional suffix for cache keys (e.g. platform identifier)'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
rust-components:
|
|
||||||
description: 'Additional Rust components to install (space-separated)'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
rust-target:
|
|
||||||
description: 'Rust target triple (e.g. x86_64-unknown-linux-gnu)'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
rust-version:
|
|
||||||
description: 'Rust version to install (e.g. nightly). Defaults to 1.87.0'
|
|
||||||
required: false
|
|
||||||
default: '1.87.0'
|
|
||||||
sccache-cache-limit:
|
|
||||||
description: 'Maximum size limit for sccache local cache (e.g. 2G, 500M)'
|
|
||||||
required: false
|
|
||||||
default: '2G'
|
|
||||||
github-token:
|
|
||||||
description: 'GitHub token for downloading sccache from GitHub releases'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
rust-version:
|
|
||||||
description: 'Installed Rust version'
|
|
||||||
value: ${{ steps.rust-setup.outputs.version }}
|
|
||||||
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Detect runner OS
|
|
||||||
id: runner-os
|
|
||||||
uses: https://git.tomfos.tr/actions/detect-versions@v1
|
|
||||||
|
|
||||||
- name: Configure Cargo environment
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
# Use workspace-relative paths for better control and consistency
|
|
||||||
echo "CARGO_HOME=${{ github.workspace }}/.cargo" >> $GITHUB_ENV
|
|
||||||
echo "CARGO_TARGET_DIR=${{ github.workspace }}/target" >> $GITHUB_ENV
|
|
||||||
echo "SCCACHE_DIR=${{ github.workspace }}/.sccache" >> $GITHUB_ENV
|
|
||||||
echo "RUSTUP_HOME=${{ github.workspace }}/.rustup" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# Limit binstall resolution timeout to avoid GitHub rate limit delays
|
|
||||||
echo "BINSTALL_MAXIMUM_RESOLUTION_TIMEOUT=10" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# Ensure directories exist for first run
|
|
||||||
mkdir -p "${{ github.workspace }}/.cargo"
|
|
||||||
mkdir -p "${{ github.workspace }}/.sccache"
|
|
||||||
mkdir -p "${{ github.workspace }}/target"
|
|
||||||
mkdir -p "${{ github.workspace }}/.rustup"
|
|
||||||
|
|
||||||
- name: Start cache restore group
|
|
||||||
shell: bash
|
|
||||||
run: echo "::group::📦 Restoring caches (registry, toolchain, build artifacts)"
|
|
||||||
|
|
||||||
- name: Cache Cargo registry and git
|
|
||||||
id: registry-cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
.cargo/registry/index
|
|
||||||
.cargo/registry/cache
|
|
||||||
.cargo/git/db
|
|
||||||
# Registry cache saved per workflow, restored from any workflow's cache
|
|
||||||
# Each workflow maintains its own registry that accumulates its needed crates
|
|
||||||
key: continuwuity-cargo-registry-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-${{ github.workflow }}
|
|
||||||
restore-keys: |
|
|
||||||
continuwuity-cargo-registry-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-
|
|
||||||
|
|
||||||
- name: Cache toolchain binaries
|
|
||||||
id: toolchain-cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
.cargo/bin
|
|
||||||
.rustup/toolchains
|
|
||||||
.rustup/update-hashes
|
|
||||||
# Shared toolchain cache across all Rust versions
|
|
||||||
key: continuwuity-toolchain-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}
|
|
||||||
|
|
||||||
|
|
||||||
- name: Setup sccache
|
|
||||||
uses: https://git.tomfos.tr/tom/sccache-action@v1
|
|
||||||
|
|
||||||
- name: Cache dependencies
|
|
||||||
id: deps-cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
target/**/.fingerprint
|
|
||||||
target/**/deps
|
|
||||||
target/**/*.d
|
|
||||||
target/**/.cargo-lock
|
|
||||||
target/**/CACHEDIR.TAG
|
|
||||||
target/**/.rustc_info.json
|
|
||||||
/timelord/
|
|
||||||
# Dependencies cache - based on Cargo.lock, survives source code changes
|
|
||||||
key: >-
|
|
||||||
continuwuity-deps-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-${{ inputs.rust-version }}${{ inputs.cache-key-suffix && format('-{0}', inputs.cache-key-suffix) || '' }}-${{ hashFiles('rust-toolchain.toml', '**/Cargo.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
continuwuity-deps-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-${{ inputs.rust-version }}${{ inputs.cache-key-suffix && format('-{0}', inputs.cache-key-suffix) || '' }}-
|
|
||||||
|
|
||||||
- name: Cache incremental compilation
|
|
||||||
id: incremental-cache
|
|
||||||
uses: actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
target/**/incremental
|
|
||||||
# Incremental cache - based on source code changes
|
|
||||||
key: >-
|
|
||||||
continuwuity-incremental-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-${{ inputs.rust-version }}${{ inputs.cache-key-suffix && format('-{0}', inputs.cache-key-suffix) || '' }}-${{ hashFiles('rust-toolchain.toml', '**/Cargo.lock') }}-${{ hashFiles('**/*.rs', '**/Cargo.toml') }}
|
|
||||||
restore-keys: |
|
|
||||||
continuwuity-incremental-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-${{ inputs.rust-version }}${{ inputs.cache-key-suffix && format('-{0}', inputs.cache-key-suffix) || '' }}-${{ hashFiles('rust-toolchain.toml', '**/Cargo.lock') }}-
|
|
||||||
continuwuity-incremental-${{ steps.runner-os.outputs.slug }}-${{ steps.runner-os.outputs.arch }}-${{ inputs.rust-version }}${{ inputs.cache-key-suffix && format('-{0}', inputs.cache-key-suffix) || '' }}-
|
|
||||||
|
|
||||||
- name: End cache restore group
|
|
||||||
shell: bash
|
|
||||||
run: echo "::endgroup::"
|
|
||||||
|
|
||||||
- name: Setup Rust toolchain
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
# Install rustup if not already cached
|
|
||||||
if ! command -v rustup &> /dev/null; then
|
|
||||||
echo "::group::📦 Installing rustup"
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain none
|
|
||||||
source "$CARGO_HOME/env"
|
|
||||||
echo "::endgroup::"
|
|
||||||
else
|
|
||||||
echo "✅ rustup already available"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup the appropriate Rust version
|
|
||||||
if [[ -n "${{ inputs.rust-version }}" ]]; then
|
|
||||||
echo "::group::📦 Setting up Rust ${{ inputs.rust-version }}"
|
|
||||||
# Set override first to prevent rust-toolchain.toml from auto-installing
|
|
||||||
rustup override set ${{ inputs.rust-version }} 2>/dev/null || true
|
|
||||||
|
|
||||||
# Check if we need to install/update the toolchain
|
|
||||||
if rustup toolchain list | grep -q "^${{ inputs.rust-version }}-"; then
|
|
||||||
rustup update ${{ inputs.rust-version }}
|
|
||||||
else
|
|
||||||
rustup toolchain install ${{ inputs.rust-version }} --profile minimal -c cargo,clippy,rustfmt
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "::group::📦 Setting up Rust from rust-toolchain.toml"
|
|
||||||
rustup show
|
|
||||||
fi
|
|
||||||
echo "::endgroup::"
|
|
||||||
|
|
||||||
- name: Configure PATH and install tools
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ inputs.github-token }}
|
|
||||||
run: |
|
|
||||||
# Add .cargo/bin to PATH permanently for all subsequent steps
|
|
||||||
echo "${{ github.workspace }}/.cargo/bin" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
# For this step only, we need to add it to PATH since GITHUB_PATH takes effect in the next step
|
|
||||||
export PATH="${{ github.workspace }}/.cargo/bin:$PATH"
|
|
||||||
|
|
||||||
# Install cargo-binstall for fast binary installations
|
|
||||||
if command -v cargo-binstall &> /dev/null; then
|
|
||||||
echo "✅ cargo-binstall already available"
|
|
||||||
else
|
|
||||||
echo "::group::📦 Installing cargo-binstall"
|
|
||||||
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
|
|
||||||
echo "::endgroup::"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if command -v prek &> /dev/null; then
|
|
||||||
echo "✅ prek already available"
|
|
||||||
else
|
|
||||||
echo "::group::📦 Installing prek"
|
|
||||||
# prek isn't regularly published to crates.io, so we use git source
|
|
||||||
cargo-binstall -y --no-symlinks --git https://github.com/j178/prek prek
|
|
||||||
echo "::endgroup::"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if command -v timelord &> /dev/null; then
|
|
||||||
echo "✅ timelord already available"
|
|
||||||
else
|
|
||||||
echo "::group::📦 Installing timelord"
|
|
||||||
cargo-binstall -y --no-symlinks timelord-cli
|
|
||||||
echo "::endgroup::"
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Configure sccache environment
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "CMAKE_C_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "CMAKE_CXX_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "CMAKE_CUDA_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# Configure incremental compilation GC
|
|
||||||
# If we restored from old cache (partial hit), clean up aggressively
|
|
||||||
if [[ "${{ steps.build-cache.outputs.cache-hit }}" != "true" ]]; then
|
|
||||||
echo "♻️ Partial cache hit - enabling cache cleanup"
|
|
||||||
echo "CARGO_INCREMENTAL_GC_THRESHOLD=5" >> $GITHUB_ENV
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Install Rust components
|
|
||||||
if: inputs.rust-components != ''
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "📦 Installing components: ${{ inputs.rust-components }}"
|
|
||||||
rustup component add ${{ inputs.rust-components }}
|
|
||||||
|
|
||||||
- name: Install Rust target
|
|
||||||
if: inputs.rust-target != ''
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "📦 Installing target: ${{ inputs.rust-target }}"
|
|
||||||
rustup target add ${{ inputs.rust-target }}
|
|
||||||
|
|
||||||
- name: Output version and summary
|
|
||||||
id: rust-setup
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
RUST_VERSION=$(rustc --version | cut -d' ' -f2)
|
|
||||||
echo "version=$RUST_VERSION" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
echo "📋 Setup complete:"
|
|
||||||
echo " Rust: $(rustc --version)"
|
|
||||||
echo " Cargo: $(cargo --version)"
|
|
||||||
echo " prek: $(prek --version 2>/dev/null || echo 'installed')"
|
|
||||||
echo " timelord: $(timelord --version 2>/dev/null || echo 'installed')"
|
|
||||||
@@ -1,120 +1,46 @@
|
|||||||
name: timelord
|
name: timelord
|
||||||
description: |
|
description: |
|
||||||
Use timelord to set file timestamps with git-warp-time fallback for cache misses
|
Use timelord to set file timestamps
|
||||||
inputs:
|
inputs:
|
||||||
key:
|
key:
|
||||||
description: |
|
description: |
|
||||||
The key to use for caching the timelord data.
|
The key to use for caching the timelord data.
|
||||||
required: false
|
This should be unique to the repository and the runner.
|
||||||
default: ''
|
required: true
|
||||||
|
default: timelord-v0
|
||||||
path:
|
path:
|
||||||
description: |
|
description: |
|
||||||
The path to the directory to be timestamped.
|
The path to the directory to be timestamped.
|
||||||
required: false
|
This should be the root of the repository.
|
||||||
default: ''
|
required: true
|
||||||
|
default: .
|
||||||
outputs:
|
|
||||||
database-path:
|
|
||||||
description: Path to timelord database
|
|
||||||
value: '${{ env.TIMELORD_CACHE_PATH }}'
|
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Set defaults
|
- name: Cache timelord-cli installation
|
||||||
|
id: cache-timelord-bin
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ~/.cargo/bin/timelord
|
||||||
|
key: timelord-cli-v3.0.1
|
||||||
|
- name: Install timelord-cli
|
||||||
|
uses: https://github.com/cargo-bins/cargo-binstall@main
|
||||||
|
if: steps.cache-timelord-bin.outputs.cache-hit != 'true'
|
||||||
|
- run: cargo binstall timelord-cli@3.0.1
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
if: steps.cache-timelord-bin.outputs.cache-hit != 'true'
|
||||||
echo "TIMELORD_KEY=${{ inputs.key || format('timelord-v1-{0}-{1}', github.repository, hashFiles('**/*.rs', '**/Cargo.toml', '**/Cargo.lock')) }}" >> $GITHUB_ENV
|
|
||||||
echo "TIMELORD_PATH=${{ inputs.path || '.' }}" >> $GITHUB_ENV
|
|
||||||
echo "TIMELORD_CACHE_PATH=$HOME/.cache/timelord" >> $GITHUB_ENV
|
|
||||||
echo "PATH=$HOME/.cargo/bin:/usr/share/rust/.cargo/bin:$PATH" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Restore binary cache
|
- name: Load timelord files
|
||||||
id: binary-cache
|
uses: actions/cache/restore@v3
|
||||||
uses: actions/cache/restore@v4
|
|
||||||
with:
|
with:
|
||||||
path: |
|
path: /timelord/
|
||||||
/usr/share/rust/.cargo/bin
|
key: ${{ inputs.key }}
|
||||||
~/.cargo/bin
|
- name: Run timelord to set timestamps
|
||||||
key: continuwuity-timelord-binaries
|
|
||||||
|
|
||||||
- name: Check if binaries need installation
|
|
||||||
shell: bash
|
shell: bash
|
||||||
id: check-binaries
|
run: timelord sync --source-dir ${{ inputs.path }} --cache-dir /timelord/
|
||||||
run: |
|
- name: Save timelord
|
||||||
NEED_INSTALL=false
|
uses: actions/cache/save@v3
|
||||||
|
|
||||||
# Ensure ~/.cargo/bin exists
|
|
||||||
mkdir -p ~/.cargo/bin
|
|
||||||
|
|
||||||
# Check and move timelord if needed
|
|
||||||
if [ -f /usr/share/rust/.cargo/bin/timelord ] && [ ! -f ~/.cargo/bin/timelord ]; then
|
|
||||||
echo "Moving timelord from /usr/share/rust/.cargo/bin to ~/.cargo/bin"
|
|
||||||
mv /usr/share/rust/.cargo/bin/timelord ~/.cargo/bin/
|
|
||||||
fi
|
|
||||||
if [ ! -f ~/.cargo/bin/timelord ]; then
|
|
||||||
echo "timelord-cli not found, needs installation"
|
|
||||||
NEED_INSTALL=true
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check and move git-warp-time if needed
|
|
||||||
if [ -f /usr/share/rust/.cargo/bin/git-warp-time ] && [ ! -f ~/.cargo/bin/git-warp-time ]; then
|
|
||||||
echo "Moving git-warp-time from /usr/share/rust/.cargo/bin to ~/.cargo/bin"
|
|
||||||
mv /usr/share/rust/.cargo/bin/git-warp-time ~/.cargo/bin/
|
|
||||||
fi
|
|
||||||
if [ ! -f ~/.cargo/bin/git-warp-time ]; then
|
|
||||||
echo "git-warp-time not found, needs installation"
|
|
||||||
NEED_INSTALL=true
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "need-install=$NEED_INSTALL" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Install timelord-cli and git-warp-time
|
|
||||||
if: steps.check-binaries.outputs.need-install == 'true'
|
|
||||||
uses: https://github.com/taiki-e/install-action@v2
|
|
||||||
with:
|
with:
|
||||||
tool: git-warp-time,timelord-cli@3.0.1
|
path: /timelord/
|
||||||
|
key: ${{ inputs.key }}
|
||||||
- name: Save binary cache
|
|
||||||
if: steps.check-binaries.outputs.need-install == 'true'
|
|
||||||
uses: actions/cache/save@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/usr/share/rust/.cargo/bin
|
|
||||||
~/.cargo/bin
|
|
||||||
key: continuwuity-timelord-binaries
|
|
||||||
|
|
||||||
|
|
||||||
- name: Restore timelord cache with fallbacks
|
|
||||||
id: timelord-restore
|
|
||||||
uses: actions/cache/restore@v4
|
|
||||||
with:
|
|
||||||
path: ${{ env.TIMELORD_CACHE_PATH }}
|
|
||||||
key: ${{ env.TIMELORD_KEY }}
|
|
||||||
restore-keys: |
|
|
||||||
continuwuity-timelord-${{ github.repository }}-
|
|
||||||
|
|
||||||
- name: Initialize timestamps on complete cache miss
|
|
||||||
if: steps.timelord-restore.outputs.cache-hit != 'true'
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "Complete timelord cache miss - running git-warp-time"
|
|
||||||
git fetch --unshallow
|
|
||||||
if [ "${{ env.TIMELORD_PATH }}" = "." ]; then
|
|
||||||
git-warp-time --quiet
|
|
||||||
else
|
|
||||||
git-warp-time --quiet ${{ env.TIMELORD_PATH }}
|
|
||||||
fi
|
|
||||||
echo "Git timestamps restored"
|
|
||||||
|
|
||||||
- name: Run timelord sync
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
mkdir -p ${{ env.TIMELORD_CACHE_PATH }}
|
|
||||||
timelord sync --source-dir ${{ env.TIMELORD_PATH }} --cache-dir ${{ env.TIMELORD_CACHE_PATH }}
|
|
||||||
|
|
||||||
- name: Save updated timelord cache immediately
|
|
||||||
uses: actions/cache/save@v4
|
|
||||||
with:
|
|
||||||
path: ${{ env.TIMELORD_CACHE_PATH }}
|
|
||||||
key: ${{ env.TIMELORD_KEY }}
|
|
||||||
|
|||||||
@@ -1,70 +0,0 @@
|
|||||||
name: upload-docker-artifacts
|
|
||||||
description: |
|
|
||||||
Upload Docker build artifacts including binary and digest files.
|
|
||||||
Handles artifact naming and conditional digest uploads for registry publishing.
|
|
||||||
|
|
||||||
inputs:
|
|
||||||
slug:
|
|
||||||
description: Platform slug for artifact naming (e.g. linux-amd64, linux-arm64)
|
|
||||||
required: true
|
|
||||||
cpu_suffix:
|
|
||||||
description: CPU suffix for artifact naming (e.g. -haswell)
|
|
||||||
required: false
|
|
||||||
default: ""
|
|
||||||
artifact_suffix:
|
|
||||||
description: Suffix for binary artifacts (e.g. -maxperf)
|
|
||||||
required: false
|
|
||||||
default: ""
|
|
||||||
digest_suffix:
|
|
||||||
description: Suffix for digest artifacts (e.g. -maxperf)
|
|
||||||
required: false
|
|
||||||
default: ""
|
|
||||||
digest:
|
|
||||||
description: The digest of the built Docker image
|
|
||||||
required: true
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
binary_artifact_name:
|
|
||||||
description: The name of the uploaded binary artifact
|
|
||||||
value: conduwuit${{ inputs.cpu_suffix }}-${{ inputs.slug }}${{ inputs.artifact_suffix }}
|
|
||||||
|
|
||||||
runs:
|
|
||||||
using: composite
|
|
||||||
steps:
|
|
||||||
- name: Export digest
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
mkdir -p /tmp/digests
|
|
||||||
digest="${{ inputs.digest }}"
|
|
||||||
echo "🔍 Build step digest output: '$digest'"
|
|
||||||
if [[ -z "$digest" ]]; then
|
|
||||||
echo "❌ ERROR: No digest found from build step"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
digest_file="/tmp/digests/${digest#sha256:}"
|
|
||||||
echo "📁 Creating digest file: $digest_file"
|
|
||||||
touch "$digest_file"
|
|
||||||
echo "✅ Digest file created successfully"
|
|
||||||
echo "📋 Contents of /tmp/digests:"
|
|
||||||
ls -la /tmp/digests/
|
|
||||||
|
|
||||||
- name: Rename extracted binary
|
|
||||||
shell: bash
|
|
||||||
run: mv /tmp/binaries/sbin/conduwuit /tmp/binaries/conduwuit${{ inputs.cpu_suffix }}-${{ inputs.slug }}${{ inputs.artifact_suffix }}
|
|
||||||
|
|
||||||
- name: Upload binary artifact
|
|
||||||
uses: forgejo/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: conduwuit${{ inputs.cpu_suffix }}-${{ inputs.slug }}${{ inputs.artifact_suffix }}
|
|
||||||
path: /tmp/binaries/conduwuit${{ inputs.cpu_suffix }}-${{ inputs.slug }}${{ inputs.artifact_suffix }}
|
|
||||||
if-no-files-found: error
|
|
||||||
|
|
||||||
- name: Upload digest
|
|
||||||
if: ${{ env.BUILTIN_REGISTRY_ENABLED == 'true' }}
|
|
||||||
uses: forgejo/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: digests${{ inputs.digest_suffix }}-${{ inputs.slug }}${{ inputs.cpu_suffix }}
|
|
||||||
path: /tmp/digests/*
|
|
||||||
if-no-files-found: error
|
|
||||||
retention-days: 5
|
|
||||||
@@ -40,12 +40,6 @@ creds:
|
|||||||
- registry: registry.gitlab.com
|
- registry: registry.gitlab.com
|
||||||
user: "{{env \"GITLAB_USERNAME\"}}"
|
user: "{{env \"GITLAB_USERNAME\"}}"
|
||||||
pass: "{{env \"GITLAB_TOKEN\"}}"
|
pass: "{{env \"GITLAB_TOKEN\"}}"
|
||||||
- registry: git.nexy7574.co.uk
|
|
||||||
user: "{{env \"N7574_GIT_USERNAME\"}}"
|
|
||||||
pass: "{{env \"N7574_GIT_TOKEN\"}}"
|
|
||||||
- registry: ghcr.io
|
|
||||||
user: "{{env \"GH_PACKAGES_USER\"}}"
|
|
||||||
pass: "{{env \"GH_PACKAGES_TOKEN\"}}"
|
|
||||||
|
|
||||||
# Global defaults
|
# Global defaults
|
||||||
defaults:
|
defaults:
|
||||||
@@ -59,11 +53,3 @@ sync:
|
|||||||
target: registry.gitlab.com/continuwuity/continuwuity
|
target: registry.gitlab.com/continuwuity/continuwuity
|
||||||
type: repository
|
type: repository
|
||||||
<<: *tags-main
|
<<: *tags-main
|
||||||
- source: *source
|
|
||||||
target: git.nexy7574.co.uk/mirrored/continuwuity
|
|
||||||
type: repository
|
|
||||||
<<: *tags-releases
|
|
||||||
- source: *source
|
|
||||||
target: ghcr.io/continuwuity/continuwuity
|
|
||||||
type: repository
|
|
||||||
<<: *tags-main
|
|
||||||
|
|||||||
@@ -1,148 +0,0 @@
|
|||||||
name: Build / Debian DEB
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: "build-debian-${{ forge.ref }}"
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "v*.*.*"
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '30 0 * * *'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
container: ["ubuntu-latest", "ubuntu-previous", "debian-latest", "debian-oldstable"]
|
|
||||||
container:
|
|
||||||
image: "ghcr.io/tcpipuk/act-runner:${{ matrix.container }}"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Get Debian version
|
|
||||||
id: debian-version
|
|
||||||
run: |
|
|
||||||
VERSION=$(cat /etc/debian_version)
|
|
||||||
DISTRIBUTION=$(lsb_release -sc 2>/dev/null)
|
|
||||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
||||||
echo "distribution=$DISTRIBUTION" >> $GITHUB_OUTPUT
|
|
||||||
echo "Debian distribution: $DISTRIBUTION ($VERSION)"
|
|
||||||
|
|
||||||
- name: Checkout repository with full history
|
|
||||||
uses: https://code.forgejo.org/actions/checkout@v5
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Cache Cargo registry
|
|
||||||
uses: https://code.forgejo.org/actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry
|
|
||||||
~/.cargo/git
|
|
||||||
key: cargo-debian-${{ steps.debian-version.outputs.distribution }}-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
cargo-debian-${{ steps.debian-version.outputs.distribution }}-
|
|
||||||
|
|
||||||
- name: Setup sccache
|
|
||||||
uses: https://git.tomfos.tr/tom/sccache-action@v1
|
|
||||||
|
|
||||||
- name: Configure sccache environment
|
|
||||||
run: |
|
|
||||||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "CMAKE_C_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "CMAKE_CXX_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "SCCACHE_CACHE_SIZE=10G" >> $GITHUB_ENV
|
|
||||||
# Aggressive GC since cache restores don't increment counter
|
|
||||||
echo "CARGO_INCREMENTAL_GC_TRIGGER=5" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Setup Rust nightly
|
|
||||||
uses: ./.forgejo/actions/setup-rust
|
|
||||||
with:
|
|
||||||
rust-version: nightly
|
|
||||||
github-token: ${{ secrets.GH_PUBLIC_RO }}
|
|
||||||
|
|
||||||
- name: Get package version and component
|
|
||||||
id: package-meta
|
|
||||||
run: |
|
|
||||||
BASE_VERSION=$(cargo metadata --no-deps --format-version 1 | jq -r ".packages[] | select(.name == \"conduwuit\").version" | sed 's/[^a-zA-Z0-9.+]/~/g')
|
|
||||||
# VERSION is the package version, COMPONENT is used in
|
|
||||||
# apt's repository config like a git repo branch
|
|
||||||
if [[ "${{ forge.ref }}" == "refs/tags/"* ]]; then
|
|
||||||
# Use the "stable" component for tagged releases
|
|
||||||
COMPONENT="stable"
|
|
||||||
VERSION=$BASE_VERSION
|
|
||||||
else
|
|
||||||
# Use the "dev" component for development builds
|
|
||||||
SHA=$(echo "${{ forge.sha }}" | cut -c1-7)
|
|
||||||
DATE=$(date +%Y%m%d)
|
|
||||||
if [ "${{ forge.ref_name }}" = "main" ]; then
|
|
||||||
COMPONENT="dev"
|
|
||||||
else
|
|
||||||
# Use the sanitized ref name as the component for feature branches
|
|
||||||
COMPONENT="dev-$(echo '${{ forge.ref_name }}' | sed 's/[^a-zA-Z0-9.+]/-/g' | tr '[:upper:]' '[:lower:]' | cut -c1-30)"
|
|
||||||
fi
|
|
||||||
CLEAN_COMPONENT=$(echo $COMPONENT | sed 's/[^a-zA-Z0-9.+]/~/g')
|
|
||||||
VERSION="$BASE_VERSION~git$DATE.$SHA-$CLEAN_COMPONENT"
|
|
||||||
fi
|
|
||||||
echo "component=$COMPONENT" >> $GITHUB_OUTPUT
|
|
||||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
||||||
echo "Component: $COMPONENT"
|
|
||||||
echo "Version: $VERSION"
|
|
||||||
|
|
||||||
- name: Install cargo-deb
|
|
||||||
run: |
|
|
||||||
if command -v cargo-deb &> /dev/null; then
|
|
||||||
echo "cargo-deb already available"
|
|
||||||
else
|
|
||||||
echo "Installing cargo-deb"
|
|
||||||
cargo-binstall -y --no-symlinks cargo-deb
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Install build dependencies
|
|
||||||
run: |
|
|
||||||
apt-get update -y
|
|
||||||
# Build dependencies for rocksdb
|
|
||||||
apt-get install -y clang liburing-dev
|
|
||||||
|
|
||||||
- name: Run cargo-deb
|
|
||||||
id: cargo-deb
|
|
||||||
run: |
|
|
||||||
DEB_PATH=$(cargo deb --deb-version ${{ steps.package-meta.outputs.version }})
|
|
||||||
echo "path=$DEB_PATH" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Test deb installation
|
|
||||||
run: |
|
|
||||||
echo "Installing: ${{ steps.cargo-deb.outputs.path }}"
|
|
||||||
|
|
||||||
apt-get install -y ${{ steps.cargo-deb.outputs.path }}
|
|
||||||
|
|
||||||
dpkg -s continuwuity
|
|
||||||
|
|
||||||
[ -f /usr/bin/conduwuit ] && echo "✅ Binary installed successfully"
|
|
||||||
[ -f /usr/lib/systemd/system/conduwuit.service ] && echo "✅ Systemd service installed"
|
|
||||||
[ -f /etc/conduwuit/conduwuit.toml ] && echo "✅ Config file installed"
|
|
||||||
|
|
||||||
- name: Upload deb artifact
|
|
||||||
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: continuwuity-${{ steps.debian-version.outputs.distribution }}
|
|
||||||
path: ${{ steps.cargo-deb.outputs.path }}
|
|
||||||
|
|
||||||
- name: Publish to Forgejo package registry
|
|
||||||
if: ${{ forge.event_name == 'push' || forge.event_name == 'workflow_dispatch' || forge.event_name == 'schedule' }}
|
|
||||||
run: |
|
|
||||||
OWNER="continuwuation"
|
|
||||||
DISTRIBUTION=${{ steps.debian-version.outputs.distribution }}
|
|
||||||
COMPONENT=${{ steps.package-meta.outputs.component }}
|
|
||||||
DEB=${{ steps.cargo-deb.outputs.path }}
|
|
||||||
|
|
||||||
echo "Publishing: $DEB in component $COMPONENT for distribution $DISTRIBUTION"
|
|
||||||
|
|
||||||
curl --fail-with-body \
|
|
||||||
-X PUT \
|
|
||||||
-H "Authorization: token ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}" \
|
|
||||||
--upload-file "$DEB" \
|
|
||||||
"${{ forge.server_url }}/api/packages/$OWNER/debian/pool/$DISTRIBUTION/$COMPONENT/upload"
|
|
||||||
@@ -1,389 +0,0 @@
|
|||||||
name: Build / Fedora RPM
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: "build-fedora-${{ github.ref }}"
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "v*.*.*"
|
|
||||||
# paths:
|
|
||||||
# - 'pkg/fedora/**'
|
|
||||||
# - 'src/**'
|
|
||||||
# - 'Cargo.toml'
|
|
||||||
# - 'Cargo.lock'
|
|
||||||
# - '.forgejo/workflows/build-fedora.yml'
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '30 0 * * *'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: fedora-latest
|
|
||||||
steps:
|
|
||||||
- name: Detect Fedora version
|
|
||||||
id: fedora
|
|
||||||
run: |
|
|
||||||
VERSION=$(rpm -E %fedora)
|
|
||||||
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
||||||
echo "Fedora version: $VERSION"
|
|
||||||
|
|
||||||
- name: Checkout repository with full history
|
|
||||||
uses: https://code.forgejo.org/actions/checkout@v5
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
|
|
||||||
- name: Cache DNF packages
|
|
||||||
uses: https://code.forgejo.org/actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/var/cache/dnf
|
|
||||||
/var/cache/yum
|
|
||||||
key: dnf-fedora${{ steps.fedora.outputs.version }}-${{ hashFiles('pkg/fedora/continuwuity.spec.rpkg') }}-v1
|
|
||||||
restore-keys: |
|
|
||||||
dnf-fedora${{ steps.fedora.outputs.version }}-
|
|
||||||
|
|
||||||
- name: Cache Cargo registry
|
|
||||||
uses: https://code.forgejo.org/actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cargo/registry
|
|
||||||
~/.cargo/git
|
|
||||||
key: cargo-fedora${{ steps.fedora.outputs.version }}-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
cargo-fedora${{ steps.fedora.outputs.version }}-
|
|
||||||
|
|
||||||
- name: Cache Rust build dependencies
|
|
||||||
uses: https://code.forgejo.org/actions/cache@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/rpmbuild/BUILD/*/target/release/deps
|
|
||||||
~/rpmbuild/BUILD/*/target/release/build
|
|
||||||
~/rpmbuild/BUILD/*/target/release/.fingerprint
|
|
||||||
~/rpmbuild/BUILD/*/target/release/incremental
|
|
||||||
key: rust-deps-fedora${{ steps.fedora.outputs.version }}-${{ hashFiles('**/Cargo.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
rust-deps-fedora${{ steps.fedora.outputs.version }}-
|
|
||||||
|
|
||||||
- name: Setup sccache
|
|
||||||
uses: https://git.tomfos.tr/tom/sccache-action@v1
|
|
||||||
|
|
||||||
- name: Configure sccache environment
|
|
||||||
run: |
|
|
||||||
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "CMAKE_C_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "CMAKE_CXX_COMPILER_LAUNCHER=sccache" >> $GITHUB_ENV
|
|
||||||
echo "SCCACHE_CACHE_SIZE=10G" >> $GITHUB_ENV
|
|
||||||
# Aggressive GC since cache restores don't increment counter
|
|
||||||
echo "CARGO_INCREMENTAL_GC_TRIGGER=5" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Install base RPM tools
|
|
||||||
run: |
|
|
||||||
dnf install -y --setopt=keepcache=1 \
|
|
||||||
fedora-packager \
|
|
||||||
python3-pip \
|
|
||||||
rpm-sign \
|
|
||||||
rpkg \
|
|
||||||
wget
|
|
||||||
|
|
||||||
- name: Setup build environment and build SRPM
|
|
||||||
run: |
|
|
||||||
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
||||||
git config --global user.email "ci@continuwuity.org"
|
|
||||||
git config --global user.name "Continuwuity"
|
|
||||||
|
|
||||||
rpmdev-setuptree
|
|
||||||
|
|
||||||
cd "$GITHUB_WORKSPACE"
|
|
||||||
|
|
||||||
# Determine release suffix and version based on ref type and branch
|
|
||||||
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
|
|
||||||
# Tags get clean version numbers for stable releases
|
|
||||||
RELEASE_SUFFIX=""
|
|
||||||
TAG_NAME="${{ github.ref_name }}"
|
|
||||||
# Extract version from tag (remove v prefix if present)
|
|
||||||
TAG_VERSION=$(echo "$TAG_NAME" | sed 's/^v//')
|
|
||||||
|
|
||||||
# Create spec file with tag version
|
|
||||||
sed -e "s/^Version:.*$/Version: $TAG_VERSION/" \
|
|
||||||
-e "s/^Release:.*$/Release: 1%{?dist}/" \
|
|
||||||
pkg/fedora/continuwuity.spec.rpkg > continuwuity.spec.rpkg
|
|
||||||
elif [ "${{ github.ref_name }}" = "main" ]; then
|
|
||||||
# Main branch gets .dev suffix
|
|
||||||
RELEASE_SUFFIX=".dev"
|
|
||||||
|
|
||||||
# Replace the Release line to include our suffix
|
|
||||||
sed "s/^Release:.*$/Release: 1${RELEASE_SUFFIX}%{?dist}/" \
|
|
||||||
pkg/fedora/continuwuity.spec.rpkg > continuwuity.spec.rpkg
|
|
||||||
else
|
|
||||||
# Other branches get sanitized branch name as suffix
|
|
||||||
SAFE_BRANCH=$(echo "${{ github.ref_name }}" | sed 's/[^a-zA-Z0-9]/_/g' | cut -c1-20)
|
|
||||||
RELEASE_SUFFIX=".${SAFE_BRANCH}"
|
|
||||||
|
|
||||||
# Replace the Release line to include our suffix
|
|
||||||
sed "s/^Release:.*$/Release: 1${RELEASE_SUFFIX}%{?dist}/" \
|
|
||||||
pkg/fedora/continuwuity.spec.rpkg > continuwuity.spec.rpkg
|
|
||||||
fi
|
|
||||||
|
|
||||||
rpkg srpm --outdir "$HOME/rpmbuild/SRPMS"
|
|
||||||
|
|
||||||
ls -la $HOME/rpmbuild/SRPMS/
|
|
||||||
|
|
||||||
|
|
||||||
- name: Install build dependencies from SRPM
|
|
||||||
run: |
|
|
||||||
SRPM=$(find "$HOME/rpmbuild/SRPMS" -name "*.src.rpm" | head -1)
|
|
||||||
|
|
||||||
if [ -z "$SRPM" ]; then
|
|
||||||
echo "Error: No SRPM file found"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Installing build dependencies from: $(basename $SRPM)"
|
|
||||||
dnf builddep -y "$SRPM"
|
|
||||||
|
|
||||||
- name: Build RPM from SRPM
|
|
||||||
run: |
|
|
||||||
SRPM=$(find "$HOME/rpmbuild/SRPMS" -name "*.src.rpm" | head -1)
|
|
||||||
|
|
||||||
if [ -z "$SRPM" ]; then
|
|
||||||
echo "Error: No SRPM file found"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Building from SRPM: $SRPM"
|
|
||||||
|
|
||||||
rpmbuild --rebuild "$SRPM" \
|
|
||||||
--define "_topdir $HOME/rpmbuild" \
|
|
||||||
--define "_sourcedir $GITHUB_WORKSPACE" \
|
|
||||||
--nocheck # Skip %check section to avoid test dependencies
|
|
||||||
|
|
||||||
|
|
||||||
- name: Test RPM installation
|
|
||||||
run: |
|
|
||||||
# Find the main binary RPM (exclude debug and source RPMs)
|
|
||||||
RPM=$(find "$HOME/rpmbuild/RPMS" -name "continuwuity-*.rpm" \
|
|
||||||
! -name "*debuginfo*" \
|
|
||||||
! -name "*debugsource*" \
|
|
||||||
! -name "*.src.rpm" | head -1)
|
|
||||||
|
|
||||||
if [ -z "$RPM" ]; then
|
|
||||||
echo "Error: No binary RPM file found"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Testing installation of: $RPM"
|
|
||||||
|
|
||||||
# Dry run first
|
|
||||||
rpm -qpi "$RPM"
|
|
||||||
echo ""
|
|
||||||
rpm -qpl "$RPM"
|
|
||||||
|
|
||||||
# Actually install it
|
|
||||||
dnf install -y "$RPM"
|
|
||||||
|
|
||||||
# Verify installation
|
|
||||||
rpm -qa | grep continuwuity
|
|
||||||
|
|
||||||
# Check that the binary exists
|
|
||||||
[ -f /usr/bin/conduwuit ] && echo "✅ Binary installed successfully"
|
|
||||||
[ -f /usr/lib/systemd/system/conduwuit.service ] && echo "✅ Systemd service installed"
|
|
||||||
[ -f /etc/conduwuit/conduwuit.toml ] && echo "✅ Config file installed"
|
|
||||||
|
|
||||||
- name: List built packages
|
|
||||||
run: |
|
|
||||||
echo "Binary RPMs:"
|
|
||||||
find "$HOME/rpmbuild/RPMS" -name "*.rpm" -type f -exec ls -la {} \;
|
|
||||||
|
|
||||||
echo ""
|
|
||||||
echo "Source RPMs:"
|
|
||||||
find "$HOME/rpmbuild/SRPMS" -name "*.rpm" -type f -exec ls -la {} \;
|
|
||||||
|
|
||||||
- name: Collect artifacts
|
|
||||||
run: |
|
|
||||||
mkdir -p artifacts
|
|
||||||
|
|
||||||
find "$HOME/rpmbuild/RPMS" -name "*.rpm" -type f -exec cp {} artifacts/ \;
|
|
||||||
find "$HOME/rpmbuild/SRPMS" -name "*.rpm" -type f -exec cp {} artifacts/ \;
|
|
||||||
|
|
||||||
cd artifacts
|
|
||||||
echo "Build Information:" > BUILD_INFO.txt
|
|
||||||
echo "==================" >> BUILD_INFO.txt
|
|
||||||
echo "Git commit: ${{ github.sha }}" >> BUILD_INFO.txt
|
|
||||||
echo "Git branch: ${{ github.ref_name }}" >> BUILD_INFO.txt
|
|
||||||
echo "Build date: $(date -u +%Y-%m-%d_%H:%M:%S_UTC)" >> BUILD_INFO.txt
|
|
||||||
echo "" >> BUILD_INFO.txt
|
|
||||||
echo "Package contents:" >> BUILD_INFO.txt
|
|
||||||
echo "-----------------" >> BUILD_INFO.txt
|
|
||||||
for rpm in *.rpm; do
|
|
||||||
echo "" >> BUILD_INFO.txt
|
|
||||||
echo "File: $rpm" >> BUILD_INFO.txt
|
|
||||||
rpm -qpi "$rpm" 2>/dev/null | grep -E "^(Name|Version|Release|Architecture|Size)" >> BUILD_INFO.txt
|
|
||||||
done
|
|
||||||
|
|
||||||
ls -la
|
|
||||||
|
|
||||||
- name: Upload binary RPM artifact
|
|
||||||
run: |
|
|
||||||
# Find the main binary RPM (exclude debug and source RPMs)
|
|
||||||
BIN_RPM=$(find artifacts -name "continuwuity-*.rpm" \
|
|
||||||
! -name "*debuginfo*" \
|
|
||||||
! -name "*debugsource*" \
|
|
||||||
! -name "*.src.rpm" \
|
|
||||||
-type f)
|
|
||||||
|
|
||||||
mkdir -p upload-bin
|
|
||||||
cp $BIN_RPM upload-bin/
|
|
||||||
|
|
||||||
- name: Upload binary RPM
|
|
||||||
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: continuwuity
|
|
||||||
path: upload-bin/
|
|
||||||
|
|
||||||
- name: Upload debug RPM artifact
|
|
||||||
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: continuwuity-debug
|
|
||||||
path: artifacts/*debuginfo*.rpm
|
|
||||||
|
|
||||||
- name: Publish to RPM Package Registry
|
|
||||||
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
|
|
||||||
run: |
|
|
||||||
# Find the main binary RPM (exclude debug and source RPMs)
|
|
||||||
RPM=$(find artifacts -name "continuwuity-*.rpm" \
|
|
||||||
! -name "*debuginfo*" \
|
|
||||||
! -name "*debugsource*" \
|
|
||||||
! -name "*.src.rpm" \
|
|
||||||
-type f | head -1)
|
|
||||||
|
|
||||||
if [ -z "$RPM" ]; then
|
|
||||||
echo "No binary RPM found to publish"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
RPM_BASENAME=$(basename "$RPM")
|
|
||||||
echo "Publishing: $RPM_BASENAME"
|
|
||||||
|
|
||||||
# Determine the group based on ref type and branch
|
|
||||||
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
|
|
||||||
GROUP="stable"
|
|
||||||
# For tags, extract the tag name for version info
|
|
||||||
TAG_NAME="${{ github.ref_name }}"
|
|
||||||
elif [ "${{ github.ref_name }}" = "main" ]; then
|
|
||||||
GROUP="dev"
|
|
||||||
else
|
|
||||||
# Use sanitized branch name as group for feature branches
|
|
||||||
GROUP=$(echo "${{ github.ref_name }}" | sed 's/[^a-zA-Z0-9]/-/g' | tr '[:upper:]' '[:lower:]' | cut -c1-30)
|
|
||||||
fi
|
|
||||||
|
|
||||||
PACKAGE_INFO=$(rpm -qpi "$RPM" 2>/dev/null)
|
|
||||||
PACKAGE_NAME=$(echo "$PACKAGE_INFO" | grep "^Name" | awk '{print $3}')
|
|
||||||
PACKAGE_VERSION=$(echo "$PACKAGE_INFO" | grep "^Version" | awk '{print $3}')
|
|
||||||
PACKAGE_RELEASE=$(echo "$PACKAGE_INFO" | grep "^Release" | awk '{print $3}')
|
|
||||||
PACKAGE_ARCH=$(echo "$PACKAGE_INFO" | grep "^Architecture" | awk '{print $2}')
|
|
||||||
|
|
||||||
# Full version includes release
|
|
||||||
FULL_VERSION="${PACKAGE_VERSION}-${PACKAGE_RELEASE}"
|
|
||||||
|
|
||||||
# Forgejo's RPM registry cannot overwrite existing packages, so we must delete first
|
|
||||||
# 404 is OK if package doesn't exist yet
|
|
||||||
echo "Removing any existing package: $PACKAGE_NAME-$FULL_VERSION.$PACKAGE_ARCH"
|
|
||||||
RESPONSE=$(curl -s -w "\n%{http_code}" -X DELETE \
|
|
||||||
-H "Authorization: token ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}" \
|
|
||||||
"https://forgejo.ellis.link/api/packages/continuwuation/rpm/$GROUP/package/$PACKAGE_NAME/$FULL_VERSION/$PACKAGE_ARCH")
|
|
||||||
HTTP_CODE=$(echo "$RESPONSE" | tail -n1)
|
|
||||||
|
|
||||||
if [ "$HTTP_CODE" != "204" ] && [ "$HTTP_CODE" != "404" ]; then
|
|
||||||
echo "ERROR: Failed to delete package (HTTP $HTTP_CODE)"
|
|
||||||
echo "$RESPONSE" | head -n -1
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
curl --fail-with-body \
|
|
||||||
-X PUT \
|
|
||||||
-H "Authorization: token ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}" \
|
|
||||||
-H "Content-Type: application/x-rpm" \
|
|
||||||
-T "$RPM" \
|
|
||||||
"https://forgejo.ellis.link/api/packages/continuwuation/rpm/$GROUP/upload?sign=true"
|
|
||||||
|
|
||||||
echo ""
|
|
||||||
echo "✅ Published binary RPM to: https://forgejo.ellis.link/continuwuation/-/packages/rpm/continuwuity/"
|
|
||||||
echo "Group: $GROUP"
|
|
||||||
|
|
||||||
# Upload debug RPMs to separate group
|
|
||||||
DEBUG_RPMS=$(find artifacts -name "*debuginfo*.rpm")
|
|
||||||
if [ -n "$DEBUG_RPMS" ]; then
|
|
||||||
echo ""
|
|
||||||
echo "Publishing debug RPMs to group: ${GROUP}-debug"
|
|
||||||
|
|
||||||
for DEBUG_RPM in $DEBUG_RPMS; do
|
|
||||||
echo "Publishing: $(basename "$DEBUG_RPM")"
|
|
||||||
|
|
||||||
DEBUG_INFO=$(rpm -qpi "$DEBUG_RPM" 2>/dev/null)
|
|
||||||
DEBUG_NAME=$(echo "$DEBUG_INFO" | grep "^Name" | awk '{print $3}')
|
|
||||||
DEBUG_VERSION=$(echo "$DEBUG_INFO" | grep "^Version" | awk '{print $3}')
|
|
||||||
DEBUG_RELEASE=$(echo "$DEBUG_INFO" | grep "^Release" | awk '{print $3}')
|
|
||||||
DEBUG_ARCH=$(echo "$DEBUG_INFO" | grep "^Architecture" | awk '{print $2}')
|
|
||||||
DEBUG_FULL_VERSION="${DEBUG_VERSION}-${DEBUG_RELEASE}"
|
|
||||||
|
|
||||||
# Must delete existing package first (Forgejo limitation)
|
|
||||||
RESPONSE=$(curl -s -w "\n%{http_code}" -X DELETE \
|
|
||||||
-H "Authorization: token ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}" \
|
|
||||||
"https://forgejo.ellis.link/api/packages/continuwuation/rpm/${GROUP}-debug/package/$DEBUG_NAME/$DEBUG_FULL_VERSION/$DEBUG_ARCH")
|
|
||||||
HTTP_CODE=$(echo "$RESPONSE" | tail -n1)
|
|
||||||
|
|
||||||
if [ "$HTTP_CODE" != "204" ] && [ "$HTTP_CODE" != "404" ]; then
|
|
||||||
echo "ERROR: Failed to delete debug package (HTTP $HTTP_CODE)"
|
|
||||||
echo "$RESPONSE" | head -n -1
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
curl --fail-with-body \
|
|
||||||
-X PUT \
|
|
||||||
-H "Authorization: token ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}" \
|
|
||||||
-H "Content-Type: application/x-rpm" \
|
|
||||||
-T "$DEBUG_RPM" \
|
|
||||||
"https://forgejo.ellis.link/api/packages/continuwuation/rpm/${GROUP}-debug/upload?sign=true"
|
|
||||||
done
|
|
||||||
|
|
||||||
echo "✅ Published debug RPMs to group: ${GROUP}-debug"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Also upload the SRPM to separate group
|
|
||||||
SRPM=$(find artifacts -name "*.src.rpm" | head -1)
|
|
||||||
if [ -n "$SRPM" ]; then
|
|
||||||
echo ""
|
|
||||||
echo "Publishing source RPM: $(basename "$SRPM")"
|
|
||||||
echo "Publishing to group: ${GROUP}-src"
|
|
||||||
|
|
||||||
SRPM_INFO=$(rpm -qpi "$SRPM" 2>/dev/null)
|
|
||||||
SRPM_NAME=$(echo "$SRPM_INFO" | grep "^Name" | awk '{print $3}')
|
|
||||||
SRPM_VERSION=$(echo "$SRPM_INFO" | grep "^Version" | awk '{print $3}')
|
|
||||||
SRPM_RELEASE=$(echo "$SRPM_INFO" | grep "^Release" | awk '{print $3}')
|
|
||||||
SRPM_FULL_VERSION="${SRPM_VERSION}-${SRPM_RELEASE}"
|
|
||||||
|
|
||||||
# Must delete existing SRPM first (Forgejo limitation)
|
|
||||||
echo "Removing any existing SRPM: $SRPM_NAME-$SRPM_FULL_VERSION.src"
|
|
||||||
RESPONSE=$(curl -s -w "\n%{http_code}" -X DELETE \
|
|
||||||
-H "Authorization: token ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}" \
|
|
||||||
"https://forgejo.ellis.link/api/packages/continuwuation/rpm/${GROUP}-src/package/$SRPM_NAME/$SRPM_FULL_VERSION/src")
|
|
||||||
HTTP_CODE=$(echo "$RESPONSE" | tail -n1)
|
|
||||||
|
|
||||||
if [ "$HTTP_CODE" != "204" ] && [ "$HTTP_CODE" != "404" ]; then
|
|
||||||
echo "ERROR: Failed to delete SRPM (HTTP $HTTP_CODE)"
|
|
||||||
echo "$RESPONSE" | head -n -1
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
curl --fail-with-body \
|
|
||||||
-X PUT \
|
|
||||||
-H "Authorization: token ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}" \
|
|
||||||
-H "Content-Type: application/x-rpm" \
|
|
||||||
-T "$SRPM" \
|
|
||||||
"https://forgejo.ellis.link/api/packages/continuwuation/rpm/${GROUP}-src/upload?sign=true"
|
|
||||||
|
|
||||||
echo "✅ Published source RPM to group: ${GROUP}-src"
|
|
||||||
fi
|
|
||||||
@@ -21,7 +21,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Sync repository
|
- name: Sync repository
|
||||||
uses: actions/checkout@v5
|
uses: https://github.com/actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
@@ -49,21 +49,10 @@ jobs:
|
|||||||
cp ./docs/static/_headers ./public/_headers
|
cp ./docs/static/_headers ./public/_headers
|
||||||
echo "Copied .well-known files and _headers to ./public"
|
echo "Copied .well-known files and _headers to ./public"
|
||||||
|
|
||||||
- name: Detect runner environment
|
|
||||||
id: runner-env
|
|
||||||
uses: https://git.tomfos.tr/actions/detect-versions@v1
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
if: steps.runner-env.outputs.node_major == '' || steps.runner-env.outputs.node_major < '20'
|
uses: https://github.com/actions/setup-node@v4
|
||||||
uses: https://github.com/actions/setup-node@v6
|
|
||||||
with:
|
with:
|
||||||
node-version: 22
|
node-version: 20
|
||||||
|
|
||||||
- name: Cache npm dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ~/.npm
|
|
||||||
key: continuwuity-${{ steps.runner-env.outputs.slug }}-${{ steps.runner-env.outputs.arch }}-node-${{ steps.runner-env.outputs.node_version }}
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm install --save-dev wrangler@latest
|
run: npm install --save-dev wrangler@latest
|
||||||
|
|||||||
@@ -4,14 +4,6 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * *"
|
- cron: "0 0 * * *"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- ".forgejo/workflows/element.yml"
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
- ".forgejo/workflows/element.yml"
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: "element-${{ github.ref }}"
|
group: "element-${{ github.ref }}"
|
||||||
@@ -24,7 +16,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: 📦 Setup Node.js
|
- name: 📦 Setup Node.js
|
||||||
uses: https://github.com/actions/setup-node@v6
|
uses: https://github.com/actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: "22"
|
node-version: "22"
|
||||||
|
|
||||||
@@ -109,7 +101,7 @@ jobs:
|
|||||||
cat ./element-web/webapp/config.json
|
cat ./element-web/webapp/config.json
|
||||||
|
|
||||||
- name: 📤 Upload Artifact
|
- name: 📤 Upload Artifact
|
||||||
uses: forgejo/upload-artifact@v4
|
uses: https://code.forgejo.org/actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: element-web
|
name: element-web
|
||||||
path: ./element-web/webapp/
|
path: ./element-web/webapp/
|
||||||
|
|||||||
@@ -11,13 +11,7 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
# Re-run when config changes
|
|
||||||
- '.forgejo/regsync/regsync.yml'
|
|
||||||
- '.forgejo/workflows/mirror-images.yml'
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: "mirror-images"
|
group: "mirror-images"
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
@@ -30,25 +24,12 @@ jobs:
|
|||||||
BUILTIN_REGISTRY_PASSWORD: ${{ secrets.BUILTIN_REGISTRY_PASSWORD }}
|
BUILTIN_REGISTRY_PASSWORD: ${{ secrets.BUILTIN_REGISTRY_PASSWORD }}
|
||||||
GITLAB_USERNAME: ${{ vars.GITLAB_USERNAME }}
|
GITLAB_USERNAME: ${{ vars.GITLAB_USERNAME }}
|
||||||
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
|
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
|
||||||
N7574_GIT_USERNAME: ${{ vars.N7574_GIT_USERNAME }}
|
|
||||||
N7574_GIT_TOKEN: ${{ secrets.N7574_GIT_TOKEN }}
|
|
||||||
GH_PACKAGES_USER: ${{ vars.GH_PACKAGES_USER }}
|
|
||||||
GH_PACKAGES_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
# - uses: https://github.com/actions/create-github-app-token@v2
|
|
||||||
# id: app-token
|
|
||||||
# with:
|
|
||||||
# app-id: ${{ vars.GH_APP_ID }}
|
|
||||||
# private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
||||||
# github-api-url: https://api.github.com
|
|
||||||
# owner: continuwuity
|
|
||||||
# repositories: continuwuity
|
|
||||||
|
|
||||||
- name: Install regctl
|
- name: Install regctl
|
||||||
uses: https://forgejo.ellis.link/continuwuation/regclient-actions/regctl-installer@main
|
uses: https://forgejo.ellis.link/continuwuation/regclient-actions/regctl-installer@main
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
name: Checks / Prefligit
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
prefligit:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
FROM_REF: ${{ github.event.pull_request.base.sha || (!github.event.forced && ( github.event.before != '0000000000000000000000000000000000000000' && github.event.before || github.sha )) || format('{0}~', github.sha) }}
|
||||||
|
TO_REF: ${{ github.sha }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
- uses: ./.forgejo/actions/prefligit
|
||||||
|
with:
|
||||||
|
extra_args: --all-files --hook-stage manual
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
name: Checks / Prek
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
fast-checks:
|
|
||||||
name: Pre-commit & Formatting
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
with:
|
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Setup Rust nightly
|
|
||||||
uses: ./.forgejo/actions/setup-rust
|
|
||||||
with:
|
|
||||||
rust-version: nightly
|
|
||||||
github-token: ${{ secrets.GH_PUBLIC_RO }}
|
|
||||||
|
|
||||||
- name: Run prek
|
|
||||||
run: |
|
|
||||||
prek run \
|
|
||||||
--all-files \
|
|
||||||
--hook-stage manual \
|
|
||||||
--show-diff-on-failure \
|
|
||||||
--color=always \
|
|
||||||
-v
|
|
||||||
|
|
||||||
- name: Check Rust formatting
|
|
||||||
run: |
|
|
||||||
cargo +nightly fmt --all -- --check && \
|
|
||||||
echo "✅ Formatting check passed" || \
|
|
||||||
exit 1
|
|
||||||
|
|
||||||
clippy-and-tests:
|
|
||||||
name: Clippy and Cargo Tests
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
with:
|
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- name: Setup LLVM
|
|
||||||
uses: ./.forgejo/actions/setup-llvm-with-apt
|
|
||||||
with:
|
|
||||||
extra-packages: liburing-dev liburing2
|
|
||||||
|
|
||||||
- name: Setup Rust with caching
|
|
||||||
uses: ./.forgejo/actions/setup-rust
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GH_PUBLIC_RO }}
|
|
||||||
|
|
||||||
- name: Run Clippy lints
|
|
||||||
run: |
|
|
||||||
cargo clippy \
|
|
||||||
--workspace \
|
|
||||||
--features full \
|
|
||||||
--locked \
|
|
||||||
--no-deps \
|
|
||||||
--profile test \
|
|
||||||
-- \
|
|
||||||
-D warnings
|
|
||||||
|
|
||||||
- name: Run Cargo tests
|
|
||||||
run: |
|
|
||||||
cargo test \
|
|
||||||
--workspace \
|
|
||||||
--features full \
|
|
||||||
--locked \
|
|
||||||
--profile test \
|
|
||||||
--all-targets \
|
|
||||||
--no-fail-fast
|
|
||||||
@@ -3,40 +3,62 @@ concurrency:
|
|||||||
group: "release-image-${{ github.ref }}"
|
group: "release-image-${{ github.ref }}"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "*.md"
|
|
||||||
- "**/*.md"
|
|
||||||
- ".gitlab-ci.yml"
|
|
||||||
- ".gitignore"
|
|
||||||
- "renovate.json"
|
|
||||||
- "pkg/**"
|
|
||||||
- "docs/**"
|
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- "*.md"
|
- "*.md"
|
||||||
- "**/*.md"
|
- "**/*.md"
|
||||||
- ".gitlab-ci.yml"
|
- ".gitlab-ci.yml"
|
||||||
- ".gitignore"
|
- ".gitignore"
|
||||||
- "renovate.json"
|
- "renovate.json"
|
||||||
- "pkg/**"
|
- "debian/**"
|
||||||
|
- "docker/**"
|
||||||
- "docs/**"
|
- "docs/**"
|
||||||
tags:
|
|
||||||
- "v*.*.*"
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
BUILTIN_REGISTRY: forgejo.ellis.link
|
BUILTIN_REGISTRY: forgejo.ellis.link
|
||||||
BUILTIN_REGISTRY_ENABLED: "${{ ((vars.BUILTIN_REGISTRY_USER && secrets.BUILTIN_REGISTRY_PASSWORD) || (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)) && 'true' || 'false' }}"
|
BUILTIN_REGISTRY_ENABLED: "${{ ((vars.BUILTIN_REGISTRY_USER && secrets.BUILTIN_REGISTRY_PASSWORD) || (github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false)) && 'true' || 'false' }}"
|
||||||
IMAGE_PATH: forgejo.ellis.link/continuwuation/continuwuity
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-release:
|
define-variables:
|
||||||
name: "Build ${{ matrix.slug }} (release)"
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
outputs:
|
||||||
|
images: ${{ steps.var.outputs.images }}
|
||||||
|
images_list: ${{ steps.var.outputs.images_list }}
|
||||||
|
build_matrix: ${{ steps.var.outputs.build_matrix }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Setting variables
|
||||||
|
uses: https://github.com/actions/github-script@v7
|
||||||
|
id: var
|
||||||
|
with:
|
||||||
|
script: |
|
||||||
|
const githubRepo = '${{ github.repository }}'.toLowerCase()
|
||||||
|
const repoId = githubRepo.split('/')[1]
|
||||||
|
|
||||||
|
core.setOutput('github_repository', githubRepo)
|
||||||
|
const builtinImage = '${{ env.BUILTIN_REGISTRY }}/' + githubRepo
|
||||||
|
let images = []
|
||||||
|
if (process.env.BUILTIN_REGISTRY_ENABLED === "true") {
|
||||||
|
images.push(builtinImage)
|
||||||
|
}
|
||||||
|
core.setOutput('images', images.join("\n"))
|
||||||
|
core.setOutput('images_list', images.join(","))
|
||||||
|
const platforms = ['linux/amd64', 'linux/arm64']
|
||||||
|
core.setOutput('build_matrix', JSON.stringify({
|
||||||
|
platform: platforms,
|
||||||
|
target_cpu: ['base'],
|
||||||
|
include: platforms.map(platform => { return {
|
||||||
|
platform,
|
||||||
|
slug: platform.replace('/', '-')
|
||||||
|
}})
|
||||||
|
}))
|
||||||
|
|
||||||
|
build-image:
|
||||||
runs-on: dind
|
runs-on: dind
|
||||||
|
needs: define-variables
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
@@ -44,28 +66,116 @@ jobs:
|
|||||||
id-token: write
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
{
|
||||||
- platform: "linux/amd64"
|
"target_cpu": ["base"],
|
||||||
slug: "linux-amd64"
|
"profile": ["release"],
|
||||||
- platform: "linux/arm64"
|
"include":
|
||||||
slug: "linux-arm64"
|
[
|
||||||
|
{ "platform": "linux/amd64", "slug": "linux-amd64" },
|
||||||
|
{ "platform": "linux/arm64", "slug": "linux-arm64" },
|
||||||
|
],
|
||||||
|
"platform": ["linux/amd64", "linux/arm64"],
|
||||||
|
}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Echo strategy
|
||||||
|
run: echo '${{ toJSON(fromJSON(needs.define-variables.outputs.build_matrix)) }}'
|
||||||
|
- name: Echo matrix
|
||||||
|
run: echo '${{ toJSON(matrix) }}'
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Prepare Docker build environment
|
- name: Install rust
|
||||||
id: prepare
|
id: rust-toolchain
|
||||||
uses: ./.forgejo/actions/prepare-docker-build
|
uses: ./.forgejo/actions/rust-toolchain
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
|
||||||
|
- name: Login to builtin registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
platform: ${{ matrix.platform }}
|
registry: ${{ env.BUILTIN_REGISTRY }}
|
||||||
slug: ${{ matrix.slug }}
|
username: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }}
|
||||||
target_cpu: ""
|
password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}
|
||||||
profile: "release"
|
|
||||||
images: ${{ env.IMAGE_PATH }}
|
# This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
|
||||||
registry_user: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }}
|
- name: Extract metadata (labels, annotations) for Docker
|
||||||
registry_password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}
|
id: meta
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: ${{needs.define-variables.outputs.images}}
|
||||||
|
# default labels & annotations: https://github.com/docker/metadata-action/blob/master/src/meta.ts#L509
|
||||||
|
env:
|
||||||
|
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
|
||||||
|
|
||||||
|
# This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
|
||||||
|
# It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
|
||||||
|
# It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
|
||||||
|
# It will not push images generated from a pull request
|
||||||
|
- name: Get short git commit SHA
|
||||||
|
id: sha
|
||||||
|
run: |
|
||||||
|
calculatedSha=$(git rev-parse --short ${{ github.sha }})
|
||||||
|
echo "COMMIT_SHORT_SHA=$calculatedSha" >> $GITHUB_ENV
|
||||||
|
- name: Get Git commit timestamps
|
||||||
|
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- uses: ./.forgejo/actions/timelord
|
||||||
|
with:
|
||||||
|
key: timelord-v0
|
||||||
|
path: .
|
||||||
|
|
||||||
|
- name: Cache Rust registry
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
.cargo/git
|
||||||
|
.cargo/git/checkouts
|
||||||
|
.cargo/registry
|
||||||
|
.cargo/registry/src
|
||||||
|
key: rust-registry-image-${{hashFiles('**/Cargo.lock') }}
|
||||||
|
- name: Cache cargo target
|
||||||
|
id: cache-cargo-target
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
cargo-target-${{ matrix.target_cpu }}-${{ matrix.slug }}-${{ matrix.profile }}
|
||||||
|
key: cargo-target-${{ matrix.target_cpu }}-${{ matrix.slug }}-${{ matrix.profile }}-${{hashFiles('**/Cargo.lock') }}-${{steps.rust-toolchain.outputs.rustc_version}}
|
||||||
|
- name: Cache apt cache
|
||||||
|
id: cache-apt
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
var-cache-apt-${{ matrix.slug }}
|
||||||
|
key: var-cache-apt-${{ matrix.slug }}
|
||||||
|
- name: Cache apt lib
|
||||||
|
id: cache-apt-lib
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
var-lib-apt-${{ matrix.slug }}
|
||||||
|
key: var-lib-apt-${{ matrix.slug }}
|
||||||
|
- name: inject cache into docker
|
||||||
|
uses: https://github.com/reproducible-containers/buildkit-cache-dance@v3.1.0
|
||||||
|
with:
|
||||||
|
cache-map: |
|
||||||
|
{
|
||||||
|
".cargo/registry": "/usr/local/cargo/registry",
|
||||||
|
".cargo/git/db": "/usr/local/cargo/git/db",
|
||||||
|
"cargo-target-${{ matrix.target_cpu }}-${{ matrix.slug }}-${{ matrix.profile }}": {
|
||||||
|
"target": "/app/target",
|
||||||
|
"id": "cargo-target-${{ matrix.target_cpu }}-${{ matrix.slug }}-${{ matrix.profile }}"
|
||||||
|
},
|
||||||
|
"var-cache-apt-${{ matrix.slug }}": "/var/cache/apt",
|
||||||
|
"var-lib-apt-${{ matrix.slug }}": "/var/lib/apt"
|
||||||
|
}
|
||||||
|
skip-extraction: ${{ steps.cache.outputs.cache-hit }}
|
||||||
|
|
||||||
- name: Build and push Docker image by digest
|
- name: Build and push Docker image by digest
|
||||||
id: build
|
id: build
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
@@ -73,134 +183,114 @@ jobs:
|
|||||||
context: .
|
context: .
|
||||||
file: "docker/Dockerfile"
|
file: "docker/Dockerfile"
|
||||||
build-args: |
|
build-args: |
|
||||||
GIT_COMMIT_HASH=${{ github.sha }}
|
GIT_COMMIT_HASH=${{ github.sha }})
|
||||||
GIT_COMMIT_HASH_SHORT=${{ env.COMMIT_SHORT_SHA }}
|
GIT_COMMIT_HASH_SHORT=${{ env.COMMIT_SHORT_SHA }}
|
||||||
GIT_REMOTE_URL=${{github.event.repository.html_url }}
|
GIT_REMOTE_URL=${{github.event.repository.html_url }}
|
||||||
GIT_REMOTE_COMMIT_URL=${{github.event.head_commit.url }}
|
GIT_REMOTE_COMMIT_URL=${{github.event.head_commit.url }}
|
||||||
CARGO_INCREMENTAL=${{ env.BUILDKIT_ENDPOINT != '' && '1' || '0' }}
|
|
||||||
TARGET_CPU=
|
|
||||||
RUST_PROFILE=release
|
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: ${{ matrix.platform }}
|
||||||
labels: ${{ steps.prepare.outputs.metadata_labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
annotations: ${{ steps.prepare.outputs.metadata_annotations }}
|
annotations: ${{ steps.meta.outputs.annotations }}
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
# cache-to: type=gha,mode=max
|
# cache-to: type=gha,mode=max
|
||||||
sbom: true
|
sbom: true
|
||||||
outputs: |
|
outputs: type=image,"name=${{ needs.define-variables.outputs.images_list }}",push-by-digest=true,name-canonical=true,push=true
|
||||||
${{ env.BUILTIN_REGISTRY_ENABLED == 'true' && format('type=image,"name={0}",push-by-digest=true,name-canonical=true,push=true', env.IMAGE_PATH) || format('type=image,"name={0}",push=false', env.IMAGE_PATH) }}
|
|
||||||
type=local,dest=/tmp/binaries
|
|
||||||
env:
|
env:
|
||||||
SOURCE_DATE_EPOCH: ${{ env.TIMESTAMP }}
|
SOURCE_DATE_EPOCH: ${{ env.TIMESTAMP }}
|
||||||
- name: Upload Docker artifacts
|
|
||||||
uses: ./.forgejo/actions/upload-docker-artifacts
|
|
||||||
with:
|
|
||||||
slug: ${{ matrix.slug }}
|
|
||||||
cpu_suffix: ${{ steps.prepare.outputs.cpu_suffix }}
|
|
||||||
artifact_suffix: ""
|
|
||||||
digest_suffix: ""
|
|
||||||
digest: ${{ steps.build.outputs.digest }}
|
|
||||||
|
|
||||||
merge-release:
|
# For publishing multi-platform manifests
|
||||||
name: "Create Multi-arch Release Manifest"
|
- name: Export digest
|
||||||
|
run: |
|
||||||
|
mkdir -p /tmp/digests
|
||||||
|
digest="${{ steps.build.outputs.digest }}"
|
||||||
|
touch "/tmp/digests/${digest#sha256:}"
|
||||||
|
|
||||||
|
- name: Extract binary from container (image)
|
||||||
|
id: extract-binary-image
|
||||||
|
run: |
|
||||||
|
mkdir -p /tmp/binaries
|
||||||
|
digest="${{ steps.build.outputs.digest }}"
|
||||||
|
echo "container_id=$(docker create --platform ${{ matrix.platform }} ${{ needs.define-variables.outputs.images_list }}@$digest)" >> $GITHUB_OUTPUT
|
||||||
|
- name: Extract binary from container (copy)
|
||||||
|
run: docker cp ${{ steps.extract-binary-image.outputs.container_id }}:/sbin/conduwuit /tmp/binaries/conduwuit-${{ matrix.target_cpu }}-${{ matrix.slug }}-${{ matrix.profile }}
|
||||||
|
- name: Extract binary from container (cleanup)
|
||||||
|
run: docker rm ${{ steps.extract-binary-image.outputs.container_id }}
|
||||||
|
|
||||||
|
- name: Upload binary artifact
|
||||||
|
uses: forgejo/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: conduwuit-${{ matrix.target_cpu }}-${{ matrix.slug }}-${{ matrix.profile }}
|
||||||
|
path: /tmp/binaries/conduwuit-${{ matrix.target_cpu }}-${{ matrix.slug }}-${{ matrix.profile }}
|
||||||
|
if-no-files-found: error
|
||||||
|
|
||||||
|
- name: Upload digest
|
||||||
|
uses: forgejo/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: digests-${{ matrix.slug }}
|
||||||
|
path: /tmp/digests/*
|
||||||
|
if-no-files-found: error
|
||||||
|
retention-days: 5
|
||||||
|
|
||||||
|
merge:
|
||||||
runs-on: dind
|
runs-on: dind
|
||||||
needs: build-release
|
needs: [define-variables, build-image]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Download digests
|
||||||
uses: actions/checkout@v5
|
uses: forgejo/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
path: /tmp/digests
|
||||||
- name: Create multi-platform manifest
|
pattern: digests-*
|
||||||
uses: ./.forgejo/actions/create-docker-manifest
|
merge-multiple: true
|
||||||
|
# Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
|
||||||
|
- name: Login to builtin registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
digest_pattern: "digests-linux-{amd64,arm64}"
|
registry: ${{ env.BUILTIN_REGISTRY }}
|
||||||
tag_suffix: ""
|
username: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }}
|
||||||
images: ${{ env.IMAGE_PATH }}
|
password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}
|
||||||
registry_user: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }}
|
|
||||||
registry_password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
build-maxperf:
|
- name: Set up Docker Buildx
|
||||||
name: "Build ${{ matrix.slug }} (max-perf)"
|
uses: docker/setup-buildx-action@v3
|
||||||
runs-on: dind
|
|
||||||
needs: build-release
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
packages: write
|
|
||||||
attestations: write
|
|
||||||
id-token: write
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- platform: "linux/amd64"
|
|
||||||
slug: "linux-amd64"
|
|
||||||
target_cpu: "haswell"
|
|
||||||
- platform: "linux/arm64"
|
|
||||||
slug: "linux-arm64"
|
|
||||||
target_cpu: ""
|
|
||||||
|
|
||||||
steps:
|
- name: Extract metadata (tags) for Docker
|
||||||
- name: Checkout repository
|
id: meta
|
||||||
uses: actions/checkout@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
tags: |
|
||||||
- name: Prepare max-perf Docker build environment
|
type=semver,pattern={{version}},prefix=v
|
||||||
id: prepare
|
type=semver,pattern={{major}}.{{minor}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.0.') }},prefix=v
|
||||||
uses: ./.forgejo/actions/prepare-docker-build
|
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }},prefix=v
|
||||||
with:
|
type=ref,event=branch,prefix=${{ format('refs/heads/{0}', github.event.repository.default_branch) != github.ref && 'branch-' || '' }}
|
||||||
platform: ${{ matrix.platform }}
|
type=ref,event=pr
|
||||||
slug: ${{ matrix.slug }}
|
type=sha,format=long
|
||||||
target_cpu: ${{ matrix.target_cpu }}
|
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
|
||||||
profile: "release-max-perf"
|
images: ${{needs.define-variables.outputs.images}}
|
||||||
images: ${{ env.IMAGE_PATH }}
|
# default labels & annotations: https://github.com/docker/metadata-action/blob/master/src/meta.ts#L509
|
||||||
registry_user: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }}
|
|
||||||
registry_password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}
|
|
||||||
- name: Build and push max-perf Docker image by digest
|
|
||||||
id: build
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
file: "docker/Dockerfile"
|
|
||||||
build-args: |
|
|
||||||
GIT_COMMIT_HASH=${{ github.sha }}
|
|
||||||
GIT_COMMIT_HASH_SHORT=${{ env.COMMIT_SHORT_SHA }}
|
|
||||||
GIT_REMOTE_URL=${{github.event.repository.html_url }}
|
|
||||||
GIT_REMOTE_COMMIT_URL=${{github.event.head_commit.url }}
|
|
||||||
CARGO_INCREMENTAL=${{ env.BUILDKIT_ENDPOINT != '' && '1' || '0' }}
|
|
||||||
TARGET_CPU=${{ matrix.target_cpu }}
|
|
||||||
RUST_PROFILE=release-max-perf
|
|
||||||
platforms: ${{ matrix.platform }}
|
|
||||||
labels: ${{ steps.prepare.outputs.metadata_labels }}
|
|
||||||
annotations: ${{ steps.prepare.outputs.metadata_annotations }}
|
|
||||||
cache-from: type=gha
|
|
||||||
# cache-to: type=gha,mode=max
|
|
||||||
sbom: true
|
|
||||||
outputs: |
|
|
||||||
${{ env.BUILTIN_REGISTRY_ENABLED == 'true' && format('type=image,"name={0}",push-by-digest=true,name-canonical=true,push=true', env.IMAGE_PATH) || format('type=image,"name={0}",push=false', env.IMAGE_PATH) }}
|
|
||||||
type=local,dest=/tmp/binaries
|
|
||||||
env:
|
env:
|
||||||
SOURCE_DATE_EPOCH: ${{ env.TIMESTAMP }}
|
DOCKER_METADATA_ANNOTATIONS_LEVELS: index
|
||||||
- name: Upload max-perf Docker artifacts
|
|
||||||
uses: ./.forgejo/actions/upload-docker-artifacts
|
|
||||||
with:
|
|
||||||
slug: ${{ matrix.slug }}
|
|
||||||
cpu_suffix: ${{ steps.prepare.outputs.cpu_suffix }}
|
|
||||||
artifact_suffix: "-maxperf"
|
|
||||||
digest_suffix: "-maxperf"
|
|
||||||
digest: ${{ steps.build.outputs.digest }}
|
|
||||||
|
|
||||||
merge-maxperf:
|
- name: Create manifest list and push
|
||||||
name: "Create Max-Perf Manifest"
|
working-directory: /tmp/digests
|
||||||
runs-on: dind
|
env:
|
||||||
needs: build-maxperf
|
IMAGES: ${{needs.define-variables.outputs.images}}
|
||||||
steps:
|
shell: bash
|
||||||
- name: Checkout repository
|
run: |
|
||||||
uses: actions/checkout@v5
|
IFS=$'\n'
|
||||||
with:
|
IMAGES_LIST=($IMAGES)
|
||||||
persist-credentials: false
|
ANNOTATIONS_LIST=($DOCKER_METADATA_OUTPUT_ANNOTATIONS)
|
||||||
- name: Create max-perf manifest
|
TAGS_LIST=($DOCKER_METADATA_OUTPUT_TAGS)
|
||||||
uses: ./.forgejo/actions/create-docker-manifest
|
for REPO in "${IMAGES_LIST[@]}"; do
|
||||||
with:
|
docker buildx imagetools create \
|
||||||
digest_pattern: "digests-maxperf-linux-{amd64-haswell,arm64}"
|
$(for tag in "${TAGS_LIST[@]}"; do echo "--tag"; echo "$tag"; done) \
|
||||||
tag_suffix: "-maxperf"
|
$(for annotation in "${ANNOTATIONS_LIST[@]}"; do echo "--annotation"; echo "$annotation"; done) \
|
||||||
images: ${{ env.IMAGE_PATH }}
|
$(for reference in *; do printf "$REPO@sha256:%s\n" $reference; done)
|
||||||
registry_user: ${{ vars.BUILTIN_REGISTRY_USER || github.actor }}
|
done
|
||||||
registry_password: ${{ secrets.BUILTIN_REGISTRY_PASSWORD || secrets.GITHUB_TOKEN }}
|
|
||||||
|
- name: Inspect image
|
||||||
|
env:
|
||||||
|
IMAGES: ${{needs.define-variables.outputs.images}}
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
IMAGES_LIST=($IMAGES)
|
||||||
|
for REPO in "${IMAGES_LIST[@]}"; do
|
||||||
|
docker buildx imagetools inspect $REPO:${{ steps.meta.outputs.version }}
|
||||||
|
done
|
||||||
|
|||||||
@@ -1,132 +0,0 @@
|
|||||||
name: Maintenance / Renovate
|
|
||||||
|
|
||||||
enable-email-notifications: true
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
# Run at 5am UTC daily to avoid late-night dev
|
|
||||||
- cron: '0 5 * * *'
|
|
||||||
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
dryRun:
|
|
||||||
description: 'Dry run mode'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
type: choice
|
|
||||||
options:
|
|
||||||
- ''
|
|
||||||
- 'extract'
|
|
||||||
- 'lookup'
|
|
||||||
- 'full'
|
|
||||||
logLevel:
|
|
||||||
description: 'Log level'
|
|
||||||
required: false
|
|
||||||
default: 'info'
|
|
||||||
type: choice
|
|
||||||
options:
|
|
||||||
- 'debug'
|
|
||||||
- 'info'
|
|
||||||
- 'warning'
|
|
||||||
- 'critical'
|
|
||||||
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths:
|
|
||||||
# Re-run when config changes
|
|
||||||
- '.forgejo/workflows/renovate.yml'
|
|
||||||
- 'renovate.json'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
renovate:
|
|
||||||
name: Renovate
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ghcr.io/renovatebot/renovate:41.146.4@sha256:bb70194b7405faf10a6f279b60caa10403a440ba37d158c5a4ef0ae7b67a0f92
|
|
||||||
options: --tmpfs /tmp:exec
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v5
|
|
||||||
with:
|
|
||||||
show-progress: false
|
|
||||||
|
|
||||||
- name: print node heap
|
|
||||||
run: /usr/local/renovate/node -e 'console.log(`node heap limit = ${require("v8").getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)'
|
|
||||||
|
|
||||||
- name: Restore renovate repo cache
|
|
||||||
uses: actions/cache/restore@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/tmp/renovate/cache/renovate/repository
|
|
||||||
key: renovate-repo-cache-${{ github.run_id }}
|
|
||||||
restore-keys: |
|
|
||||||
renovate-repo-cache-
|
|
||||||
|
|
||||||
- name: Restore renovate package cache
|
|
||||||
uses: actions/cache/restore@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/tmp/renovate/cache/renovate/renovate-cache-sqlite
|
|
||||||
key: renovate-package-cache-${{ github.run_id }}
|
|
||||||
restore-keys: |
|
|
||||||
renovate-package-cache-
|
|
||||||
|
|
||||||
- name: Restore renovate OSV cache
|
|
||||||
uses: actions/cache/restore@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/tmp/osv
|
|
||||||
key: renovate-osv-cache-${{ github.run_id }}
|
|
||||||
restore-keys: |
|
|
||||||
renovate-osv-cache-
|
|
||||||
|
|
||||||
- name: Self-hosted Renovate
|
|
||||||
run: renovate
|
|
||||||
env:
|
|
||||||
LOG_LEVEL: ${{ inputs.logLevel || 'info' }}
|
|
||||||
RENOVATE_DRY_RUN: ${{ inputs.dryRun || 'false' }}
|
|
||||||
|
|
||||||
RENOVATE_PLATFORM: forgejo
|
|
||||||
RENOVATE_ENDPOINT: ${{ github.server_url }}
|
|
||||||
RENOVATE_AUTODISCOVER: 'false'
|
|
||||||
RENOVATE_REPOSITORIES: '["${{ github.repository }}"]'
|
|
||||||
|
|
||||||
RENOVATE_GIT_TIMEOUT: 60000
|
|
||||||
|
|
||||||
RENOVATE_REQUIRE_CONFIG: 'required'
|
|
||||||
RENOVATE_ONBOARDING: 'false'
|
|
||||||
RENOVATE_INHERIT_CONFIG: 'true'
|
|
||||||
|
|
||||||
RENOVATE_GITHUB_TOKEN_WARN: 'false'
|
|
||||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
||||||
GITHUB_COM_TOKEN: ${{ secrets.GH_PUBLIC_RO || secrets.GH_TOKEN }}
|
|
||||||
|
|
||||||
RENOVATE_REPOSITORY_CACHE: 'enabled'
|
|
||||||
RENOVATE_X_SQLITE_PACKAGE_CACHE: 'true'
|
|
||||||
OSV_OFFLINE_ROOT_DIR: /tmp/osv
|
|
||||||
|
|
||||||
- name: Save renovate repo cache
|
|
||||||
if: always()
|
|
||||||
uses:
|
|
||||||
actions/cache/save@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/tmp/renovate/cache/renovate/repository
|
|
||||||
key: renovate-repo-cache-${{ github.run_id }}
|
|
||||||
|
|
||||||
- name: Save renovate package cache
|
|
||||||
if: always()
|
|
||||||
uses: actions/cache/save@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/tmp/renovate/cache/renovate/renovate-cache-sqlite
|
|
||||||
key: renovate-package-cache-${{ github.run_id }}
|
|
||||||
|
|
||||||
- name: Save renovate OSV cache
|
|
||||||
if: always()
|
|
||||||
uses: actions/cache/save@v4
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
/tmp/osv
|
|
||||||
key: renovate-osv-cache-${{ github.run_id }}
|
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
name: Checks / Rust
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
format:
|
||||||
|
name: Format
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- name: Install rust
|
||||||
|
uses: ./.forgejo/actions/rust-toolchain
|
||||||
|
with:
|
||||||
|
toolchain: "nightly"
|
||||||
|
components: "rustfmt"
|
||||||
|
|
||||||
|
- name: Check formatting
|
||||||
|
run: |
|
||||||
|
cargo +nightly fmt --all -- --check
|
||||||
|
|
||||||
|
clippy:
|
||||||
|
name: Clippy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- name: Install rust
|
||||||
|
uses: ./.forgejo/actions/rust-toolchain
|
||||||
|
|
||||||
|
- uses: https://github.com/actions/create-github-app-token@v2
|
||||||
|
id: app-token
|
||||||
|
with:
|
||||||
|
app-id: ${{ vars.GH_APP_ID }}
|
||||||
|
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
||||||
|
github-api-url: https://api.github.com
|
||||||
|
owner: ${{ vars.GH_APP_OWNER }}
|
||||||
|
repositories: ""
|
||||||
|
- name: Install sccache
|
||||||
|
uses: ./.forgejo/actions/sccache
|
||||||
|
with:
|
||||||
|
token: ${{ steps.app-token.outputs.token }}
|
||||||
|
- run: sudo apt-get update
|
||||||
|
- name: Install system dependencies
|
||||||
|
uses: https://github.com/awalsh128/cache-apt-pkgs-action@v1
|
||||||
|
with:
|
||||||
|
packages: clang liburing-dev
|
||||||
|
version: 1
|
||||||
|
- name: Cache Rust registry
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/git
|
||||||
|
!~/.cargo/git/checkouts
|
||||||
|
~/.cargo/registry
|
||||||
|
!~/.cargo/registry/src
|
||||||
|
key: rust-registry-${{hashFiles('**/Cargo.lock') }}
|
||||||
|
- name: Timelord
|
||||||
|
uses: ./.forgejo/actions/timelord
|
||||||
|
with:
|
||||||
|
key: sccache-v0
|
||||||
|
path: .
|
||||||
|
- name: Clippy
|
||||||
|
run: |
|
||||||
|
cargo clippy \
|
||||||
|
--workspace \
|
||||||
|
--all-features \
|
||||||
|
--locked \
|
||||||
|
--no-deps \
|
||||||
|
--profile test \
|
||||||
|
-- \
|
||||||
|
-D warnings
|
||||||
|
|
||||||
|
- name: Show sccache stats
|
||||||
|
if: always()
|
||||||
|
run: sccache --show-stats
|
||||||
|
|
||||||
|
cargo-test:
|
||||||
|
name: Cargo Test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
persist-credentials: false
|
||||||
|
|
||||||
|
- name: Install rust
|
||||||
|
uses: ./.forgejo/actions/rust-toolchain
|
||||||
|
|
||||||
|
- uses: https://github.com/actions/create-github-app-token@v2
|
||||||
|
id: app-token
|
||||||
|
with:
|
||||||
|
app-id: ${{ vars.GH_APP_ID }}
|
||||||
|
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
||||||
|
github-api-url: https://api.github.com
|
||||||
|
owner: ${{ vars.GH_APP_OWNER }}
|
||||||
|
repositories: ""
|
||||||
|
- name: Install sccache
|
||||||
|
uses: ./.forgejo/actions/sccache
|
||||||
|
with:
|
||||||
|
token: ${{ steps.app-token.outputs.token }}
|
||||||
|
- run: sudo apt-get update
|
||||||
|
- name: Install system dependencies
|
||||||
|
uses: https://github.com/awalsh128/cache-apt-pkgs-action@v1
|
||||||
|
with:
|
||||||
|
packages: clang liburing-dev
|
||||||
|
version: 1
|
||||||
|
- name: Cache Rust registry
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/git
|
||||||
|
!~/.cargo/git/checkouts
|
||||||
|
~/.cargo/registry
|
||||||
|
!~/.cargo/registry/src
|
||||||
|
key: rust-registry-${{hashFiles('**/Cargo.lock') }}
|
||||||
|
- name: Timelord
|
||||||
|
uses: ./.forgejo/actions/timelord
|
||||||
|
with:
|
||||||
|
key: sccache-v0
|
||||||
|
path: .
|
||||||
|
- name: Cargo Test
|
||||||
|
run: |
|
||||||
|
cargo test \
|
||||||
|
--workspace \
|
||||||
|
--all-features \
|
||||||
|
--locked \
|
||||||
|
--profile test \
|
||||||
|
--all-targets \
|
||||||
|
--no-fail-fast
|
||||||
|
|
||||||
|
- name: Show sccache stats
|
||||||
|
if: always()
|
||||||
|
run: sccache --show-stats
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
name: Update flake hashes
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- "Cargo.lock"
|
|
||||||
- "Cargo.toml"
|
|
||||||
- "rust-toolchain.toml"
|
|
||||||
- "nix/**/*"
|
|
||||||
- ".forgejo/workflows/update-flake-hashes.yml"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update-flake-hashes:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: https://code.forgejo.org/actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
fetch-tags: false
|
|
||||||
fetch-single-branch: true
|
|
||||||
submodules: false
|
|
||||||
persist-credentials: false
|
|
||||||
|
|
||||||
- uses: https://github.com/cachix/install-nix-action@7ab6e7fd29da88e74b1e314a4ae9ac6b5cda3801 # v31.8.0
|
|
||||||
with:
|
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
|
||||||
|
|
||||||
# We can skip getting a toolchain hash if this was ran as a dispatch with the intent
|
|
||||||
# to update just the rocksdb hash. If this was ran as a dispatch and the toolchain
|
|
||||||
# files are changed, we still update them, as well as the rocksdb import.
|
|
||||||
- name: Detect changed files
|
|
||||||
id: changes
|
|
||||||
run: |
|
|
||||||
git fetch origin ${{ github.base_ref }} --depth=1 || true
|
|
||||||
if [ -n "${{ github.event.pull_request.base.sha }}" ]; then
|
|
||||||
base=${{ github.event.pull_request.base.sha }}
|
|
||||||
else
|
|
||||||
base=$(git rev-parse HEAD~1)
|
|
||||||
fi
|
|
||||||
echo "Base: $base"
|
|
||||||
echo "HEAD: $(git rev-parse HEAD)"
|
|
||||||
git diff --name-only $base HEAD > changed_files.txt
|
|
||||||
echo "detected changes in $(cat changed_files.txt)"
|
|
||||||
# Join files with commas
|
|
||||||
files=$(paste -sd, changed_files.txt)
|
|
||||||
echo "files=$files" >> $FORGEJO_OUTPUT
|
|
||||||
|
|
||||||
- name: Debug output
|
|
||||||
run: |
|
|
||||||
echo "State of output"
|
|
||||||
echo "Changed files: ${{ steps.changes.outputs.files }}"
|
|
||||||
|
|
||||||
- name: Get new toolchain hash
|
|
||||||
if: contains(steps.changes.outputs.files, 'Cargo.toml') || contains(steps.changes.outputs.files, 'Cargo.lock') || contains(steps.changes.outputs.files, 'rust-toolchain.toml')
|
|
||||||
run: |
|
|
||||||
# Set the current sha256 to an empty hash to make `nix build` calculate a new one
|
|
||||||
awk '/fromToolchainFile *\{/{found=1; print; next} found && /sha256 =/{sub(/sha256 = .*/, "sha256 = lib.fakeSha256;"); found=0} 1' nix/packages/rust.nix > temp.nix
|
|
||||||
mv temp.nix nix/packages/rust.nix
|
|
||||||
|
|
||||||
# Build continuwuity and filter for the new hash
|
|
||||||
# We do `|| true` because we want this to fail without stopping the workflow
|
|
||||||
nix build .#default 2>&1 | tee >(grep 'got:' | awk '{print $2}' > new_toolchain_hash.txt) || true
|
|
||||||
|
|
||||||
# Place the new hash in place of the empty hash
|
|
||||||
new_hash=$(cat new_toolchain_hash.txt)
|
|
||||||
sed -i "s|lib.fakeSha256|\"$new_hash\"|" nix/packages/rust.nix
|
|
||||||
|
|
||||||
echo "New hash:"
|
|
||||||
awk -F'"' '/fromToolchainFile/{found=1; next} found && /sha256 =/{print $2; found=0}' nix/packages/rust.nix
|
|
||||||
echo "Expected new hash:"
|
|
||||||
cat new_toolchain_hash.txt
|
|
||||||
|
|
||||||
rm new_toolchain_hash.txt
|
|
||||||
|
|
||||||
- name: Get new rocksdb hash
|
|
||||||
if: contains(steps.changes.outputs.files, '.nix') || contains(steps.changes.outputs.files, 'flake.lock')
|
|
||||||
run: |
|
|
||||||
# Set the current sha256 to an empty hash to make `nix build` calculate a new one
|
|
||||||
awk '/repo = "rocksdb";/{found=1; print; next} found && /sha256 =/{sub(/sha256 = .*/, "sha256 = lib.fakeSha256;"); found=0} 1' nix/packages/rocksdb/package.nix > temp.nix
|
|
||||||
mv temp.nix nix/packages/rocksdb/package.nix
|
|
||||||
|
|
||||||
# Build continuwuity and filter for the new hash
|
|
||||||
# We do `|| true` because we want this to fail without stopping the workflow
|
|
||||||
nix build .#default 2>&1 | tee >(grep 'got:' | awk '{print $2}' > new_rocksdb_hash.txt) || true
|
|
||||||
|
|
||||||
# Place the new hash in place of the empty hash
|
|
||||||
new_hash=$(cat new_rocksdb_hash.txt)
|
|
||||||
sed -i "s|lib.fakeSha256|\"$new_hash\"|" nix/packages/rocksdb/package.nix
|
|
||||||
|
|
||||||
echo "New hash:"
|
|
||||||
awk -F'"' '/repo = "rocksdb";/{found=1; next} found && /sha256 =/{print $2; found=0}' nix/packages/rocksdb/package.nix
|
|
||||||
echo "Expected new hash:"
|
|
||||||
cat new_rocksdb_hash.txt
|
|
||||||
|
|
||||||
rm new_rocksdb_hash.txt
|
|
||||||
|
|
||||||
- name: Show diff
|
|
||||||
run: git diff flake.nix nix
|
|
||||||
|
|
||||||
- name: Push changes
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
if git diff --quiet --exit-code; then
|
|
||||||
echo "No changes to commit."
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
git config user.email "renovate@mail.ellis.link"
|
|
||||||
git config user.name "renovate"
|
|
||||||
|
|
||||||
REF="${{ github.head_ref }}"
|
|
||||||
|
|
||||||
git fetch origin "$REF"
|
|
||||||
git checkout "$REF"
|
|
||||||
|
|
||||||
git commit -a -m "chore(Nix): Updated flake hashes"
|
|
||||||
|
|
||||||
git push origin HEAD:refs/heads/"$REF"
|
|
||||||
+3
-2
@@ -1,4 +1,5 @@
|
|||||||
github: [JadedBlueEyes, nexy7574]
|
github: [JadedBlueEyes]
|
||||||
|
# Doesn't support an array, so we can only list nex
|
||||||
|
ko_fi: nexy7574
|
||||||
custom:
|
custom:
|
||||||
- https://ko-fi.com/nexy7574
|
|
||||||
- https://ko-fi.com/JadedBlueEyes
|
- https://ko-fi.com/JadedBlueEyes
|
||||||
|
|||||||
@@ -13,4 +13,3 @@ Rudi Floren <rudi.floren@gmail.com> <rudi.floren@googlemail.com>
|
|||||||
Tamara Schmitz <tamara.zoe.schmitz@posteo.de> <15906939+tamara-schmitz@users.noreply.github.com>
|
Tamara Schmitz <tamara.zoe.schmitz@posteo.de> <15906939+tamara-schmitz@users.noreply.github.com>
|
||||||
Timo Kösters <timo@koesters.xyz>
|
Timo Kösters <timo@koesters.xyz>
|
||||||
x4u <xi.zhu@protonmail.ch> <14617923-x4u@users.noreply.gitlab.com>
|
x4u <xi.zhu@protonmail.ch> <14617923-x4u@users.noreply.gitlab.com>
|
||||||
Ginger <ginger@gingershaped.computer> <75683114+gingershaped@users.noreply.github.com>
|
|
||||||
|
|||||||
@@ -7,9 +7,9 @@ default_stages:
|
|||||||
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v6.0.0
|
rev: v5.0.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: fix-byte-order-marker
|
- id: check-byte-order-marker
|
||||||
- id: check-case-conflict
|
- id: check-case-conflict
|
||||||
- id: check-symlinks
|
- id: check-symlinks
|
||||||
- id: destroyed-symlinks
|
- id: destroyed-symlinks
|
||||||
@@ -23,7 +23,7 @@ repos:
|
|||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
|
|
||||||
- repo: https://github.com/crate-ci/typos
|
- repo: https://github.com/crate-ci/typos
|
||||||
rev: v1.39.0
|
rev: v1.26.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: typos
|
- id: typos
|
||||||
- id: typos
|
- id: typos
|
||||||
|
|||||||
@@ -13,9 +13,6 @@ extend-ignore-re = [
|
|||||||
"[0-9+][A-Za-z0-9+]{30,}[a-z0-9+]",
|
"[0-9+][A-Za-z0-9+]{30,}[a-z0-9+]",
|
||||||
"\\$[A-Z0-9+][A-Za-z0-9+]{6,}[a-z0-9+]",
|
"\\$[A-Z0-9+][A-Za-z0-9+]{6,}[a-z0-9+]",
|
||||||
"\\b[a-z0-9+/=][A-Za-z0-9+/=]{7,}[a-z0-9+/=][A-Z]\\b",
|
"\\b[a-z0-9+/=][A-Za-z0-9+/=]{7,}[a-z0-9+/=][A-Z]\\b",
|
||||||
|
|
||||||
# In the renovate config
|
|
||||||
".ontainer"
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[default.extend-words]
|
[default.extend-words]
|
||||||
|
|||||||
Vendored
+1
-2
@@ -7,6 +7,5 @@
|
|||||||
"continuwuity",
|
"continuwuity",
|
||||||
"homeserver",
|
"homeserver",
|
||||||
"homeservers"
|
"homeservers"
|
||||||
],
|
]
|
||||||
"rust-analyzer.cargo.features": ["full"]
|
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-3
@@ -65,11 +65,11 @@ Tests, compilation, and linting can be run with standard Cargo commands:
|
|||||||
cargo test
|
cargo test
|
||||||
|
|
||||||
# Check compilation
|
# Check compilation
|
||||||
cargo check --workspace --features full
|
cargo check --workspace --all-features
|
||||||
|
|
||||||
# Run lints
|
# Run lints
|
||||||
cargo clippy --workspace --features full
|
cargo clippy --workspace --all-features
|
||||||
# Auto-fix: cargo clippy --workspace --features full --fix --allow-staged;
|
# Auto-fix: cargo clippy --workspace --all-features --fix --allow-staged;
|
||||||
|
|
||||||
# Format code (must use nightly)
|
# Format code (must use nightly)
|
||||||
cargo +nightly fmt
|
cargo +nightly fmt
|
||||||
|
|||||||
Generated
+1101
-1106
File diff suppressed because it is too large
Load Diff
+67
-44
@@ -21,7 +21,7 @@ license = "Apache-2.0"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://forgejo.ellis.link/continuwuation/continuwuity"
|
repository = "https://forgejo.ellis.link/continuwuation/continuwuity"
|
||||||
rust-version = "1.86.0"
|
rust-version = "1.86.0"
|
||||||
version = "0.5.0-rc.8"
|
version = "0.5.0-rc.6"
|
||||||
|
|
||||||
[workspace.metadata.crane]
|
[workspace.metadata.crane]
|
||||||
name = "conduwuit"
|
name = "conduwuit"
|
||||||
@@ -45,18 +45,18 @@ version = "0.3"
|
|||||||
features = ["ffi", "std", "union"]
|
features = ["ffi", "std", "union"]
|
||||||
|
|
||||||
[workspace.dependencies.const-str]
|
[workspace.dependencies.const-str]
|
||||||
version = "0.7.0"
|
version = "0.6.2"
|
||||||
|
|
||||||
[workspace.dependencies.ctor]
|
[workspace.dependencies.ctor]
|
||||||
version = "0.5.0"
|
version = "0.2.9"
|
||||||
|
|
||||||
[workspace.dependencies.cargo_toml]
|
[workspace.dependencies.cargo_toml]
|
||||||
version = "0.22"
|
version = "0.21"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["features"]
|
features = ["features"]
|
||||||
|
|
||||||
[workspace.dependencies.toml]
|
[workspace.dependencies.toml]
|
||||||
version = "0.9.5"
|
version = "0.8.14"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["parse"]
|
features = ["parse"]
|
||||||
|
|
||||||
@@ -166,8 +166,8 @@ default-features = false
|
|||||||
features = ["raw_value"]
|
features = ["raw_value"]
|
||||||
|
|
||||||
# Used for appservice registration files
|
# Used for appservice registration files
|
||||||
[workspace.dependencies.serde-saphyr]
|
[workspace.dependencies.serde_yaml]
|
||||||
version = "0.0.7"
|
version = "0.9.34"
|
||||||
|
|
||||||
# Used to load forbidden room/user regex from config
|
# Used to load forbidden room/user regex from config
|
||||||
[workspace.dependencies.serde_regex]
|
[workspace.dependencies.serde_regex]
|
||||||
@@ -210,13 +210,13 @@ default-features = false
|
|||||||
version = "0.1.41"
|
version = "0.1.41"
|
||||||
default-features = false
|
default-features = false
|
||||||
[workspace.dependencies.tracing-subscriber]
|
[workspace.dependencies.tracing-subscriber]
|
||||||
version = "0.3.20"
|
version = "0.3.19"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["env-filter", "std", "tracing", "tracing-log", "ansi", "fmt"]
|
features = ["env-filter", "std", "tracing", "tracing-log", "ansi", "fmt"]
|
||||||
[workspace.dependencies.tracing-journald]
|
[workspace.dependencies.tracing-journald]
|
||||||
version = "0.3.1"
|
version = "0.3.1"
|
||||||
[workspace.dependencies.tracing-core]
|
[workspace.dependencies.tracing-core]
|
||||||
version = "0.1.34"
|
version = "0.1.33"
|
||||||
default-features = false
|
default-features = false
|
||||||
|
|
||||||
# for URL previews
|
# for URL previews
|
||||||
@@ -286,7 +286,7 @@ features = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[workspace.dependencies.hyper-util]
|
[workspace.dependencies.hyper-util]
|
||||||
version = "=0.1.17"
|
version = "0.1.11"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = [
|
features = [
|
||||||
"server-auto",
|
"server-auto",
|
||||||
@@ -351,7 +351,8 @@ version = "0.1.2"
|
|||||||
# Used for matrix spec type definitions and helpers
|
# Used for matrix spec type definitions and helpers
|
||||||
[workspace.dependencies.ruma]
|
[workspace.dependencies.ruma]
|
||||||
git = "https://forgejo.ellis.link/continuwuation/ruwuma"
|
git = "https://forgejo.ellis.link/continuwuation/ruwuma"
|
||||||
rev = "50b2a91b2ab8f9830eea80b9911e11234e0eac66"
|
#branch = "conduwuit-changes"
|
||||||
|
rev = "b753738047d1f443aca870896ef27ecaacf027da"
|
||||||
features = [
|
features = [
|
||||||
"compat",
|
"compat",
|
||||||
"rand",
|
"rand",
|
||||||
@@ -381,18 +382,16 @@ features = [
|
|||||||
"unstable-msc4095",
|
"unstable-msc4095",
|
||||||
"unstable-msc4121",
|
"unstable-msc4121",
|
||||||
"unstable-msc4125",
|
"unstable-msc4125",
|
||||||
"unstable-msc4155",
|
|
||||||
"unstable-msc4186",
|
"unstable-msc4186",
|
||||||
"unstable-msc4203", # sending to-device events to appservices
|
"unstable-msc4203", # sending to-device events to appservices
|
||||||
"unstable-msc4210", # remove legacy mentions
|
"unstable-msc4210", # remove legacy mentions
|
||||||
"unstable-extensible-events",
|
"unstable-extensible-events",
|
||||||
"unstable-pdu",
|
"unstable-pdu",
|
||||||
"unstable-msc4155"
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.dependencies.rust-rocksdb]
|
[workspace.dependencies.rust-rocksdb]
|
||||||
git = "https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1"
|
git = "https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1"
|
||||||
rev = "61d9d23872197e9ace4a477f2617d5c9f50ecb23"
|
rev = "fc9a99ac54a54208f90fdcba33ae6ee8bc3531dd"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = [
|
features = [
|
||||||
"multi-threaded-cf",
|
"multi-threaded-cf",
|
||||||
@@ -412,27 +411,25 @@ default-features = false
|
|||||||
|
|
||||||
# optional opentelemetry, performance measurements, flamegraphs, etc for performance measurements and monitoring
|
# optional opentelemetry, performance measurements, flamegraphs, etc for performance measurements and monitoring
|
||||||
[workspace.dependencies.opentelemetry]
|
[workspace.dependencies.opentelemetry]
|
||||||
version = "0.31.0"
|
version = "0.21.0"
|
||||||
|
|
||||||
[workspace.dependencies.tracing-flame]
|
[workspace.dependencies.tracing-flame]
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
||||||
[workspace.dependencies.tracing-opentelemetry]
|
[workspace.dependencies.tracing-opentelemetry]
|
||||||
version = "0.32.0"
|
version = "0.22.0"
|
||||||
|
|
||||||
[workspace.dependencies.opentelemetry_sdk]
|
[workspace.dependencies.opentelemetry_sdk]
|
||||||
version = "0.31.0"
|
version = "0.21.2"
|
||||||
features = ["rt-tokio"]
|
features = ["rt-tokio"]
|
||||||
|
|
||||||
[workspace.dependencies.opentelemetry-otlp]
|
[workspace.dependencies.opentelemetry-jaeger]
|
||||||
version = "0.31.0"
|
version = "0.20.0"
|
||||||
features = ["http", "trace", "logs", "metrics"]
|
features = ["rt-tokio"]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# optional sentry metrics for crash/panic reporting
|
# optional sentry metrics for crash/panic reporting
|
||||||
[workspace.dependencies.sentry]
|
[workspace.dependencies.sentry]
|
||||||
version = "0.45.0"
|
version = "0.37.0"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = [
|
features = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
@@ -448,9 +445,9 @@ features = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[workspace.dependencies.sentry-tracing]
|
[workspace.dependencies.sentry-tracing]
|
||||||
version = "0.45.0"
|
version = "0.37.0"
|
||||||
[workspace.dependencies.sentry-tower]
|
[workspace.dependencies.sentry-tower]
|
||||||
version = "0.45.0"
|
version = "0.37.0"
|
||||||
|
|
||||||
# jemalloc usage
|
# jemalloc usage
|
||||||
[workspace.dependencies.tikv-jemalloc-sys]
|
[workspace.dependencies.tikv-jemalloc-sys]
|
||||||
@@ -476,10 +473,10 @@ default-features = false
|
|||||||
features = ["use_std"]
|
features = ["use_std"]
|
||||||
|
|
||||||
[workspace.dependencies.console-subscriber]
|
[workspace.dependencies.console-subscriber]
|
||||||
version = "0.5"
|
version = "0.4"
|
||||||
|
|
||||||
[workspace.dependencies.nix]
|
[workspace.dependencies.nix]
|
||||||
version = "0.30.1"
|
version = "0.29.0"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["resource"]
|
features = ["resource"]
|
||||||
|
|
||||||
@@ -501,7 +498,7 @@ version = "0.4.3"
|
|||||||
default-features = false
|
default-features = false
|
||||||
|
|
||||||
[workspace.dependencies.termimad]
|
[workspace.dependencies.termimad]
|
||||||
version = "0.34.0"
|
version = "0.31.2"
|
||||||
default-features = false
|
default-features = false
|
||||||
|
|
||||||
[workspace.dependencies.checked_ops]
|
[workspace.dependencies.checked_ops]
|
||||||
@@ -539,31 +536,35 @@ version = "0.2"
|
|||||||
version = "0.2"
|
version = "0.2"
|
||||||
|
|
||||||
[workspace.dependencies.minicbor]
|
[workspace.dependencies.minicbor]
|
||||||
version = "2.1.1"
|
version = "0.26.3"
|
||||||
features = ["std"]
|
features = ["std"]
|
||||||
|
|
||||||
[workspace.dependencies.minicbor-serde]
|
[workspace.dependencies.minicbor-serde]
|
||||||
version = "0.6.0"
|
version = "0.4.1"
|
||||||
features = ["std"]
|
features = ["std"]
|
||||||
|
|
||||||
[workspace.dependencies.maplit]
|
[workspace.dependencies.maplit]
|
||||||
version = "1.0.2"
|
version = "1.0.2"
|
||||||
|
|
||||||
[workspace.dependencies.ldap3]
|
|
||||||
version = "0.12.0"
|
|
||||||
default-features = false
|
|
||||||
features = ["sync", "tls-rustls", "rustls-provider"]
|
|
||||||
|
|
||||||
[workspace.dependencies.resolv-conf]
|
|
||||||
version = "0.7.5"
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Patches
|
# Patches
|
||||||
#
|
#
|
||||||
|
|
||||||
# backport of [https://github.com/tokio-rs/tracing/pull/2956] to the 0.1.x branch of tracing.
|
# backport of [https://github.com/tokio-rs/tracing/pull/2956] to the 0.1.x branch of tracing.
|
||||||
# we can switch back to upstream if #2956 is merged and backported in the upstream repo.
|
# we can switch back to upstream if #2956 is merged and backported in the upstream repo.
|
||||||
|
# https://forgejo.ellis.link/continuwuation/tracing/commit/b348dca742af641c47bc390261f60711c2af573c
|
||||||
|
[patch.crates-io.tracing-subscriber]
|
||||||
|
git = "https://forgejo.ellis.link/continuwuation/tracing"
|
||||||
|
rev = "1e64095a8051a1adf0d1faa307f9f030889ec2aa"
|
||||||
|
[patch.crates-io.tracing]
|
||||||
|
git = "https://forgejo.ellis.link/continuwuation/tracing"
|
||||||
|
rev = "1e64095a8051a1adf0d1faa307f9f030889ec2aa"
|
||||||
|
[patch.crates-io.tracing-core]
|
||||||
|
git = "https://forgejo.ellis.link/continuwuation/tracing"
|
||||||
|
rev = "1e64095a8051a1adf0d1faa307f9f030889ec2aa"
|
||||||
|
[patch.crates-io.tracing-log]
|
||||||
|
git = "https://forgejo.ellis.link/continuwuation/tracing"
|
||||||
|
rev = "1e64095a8051a1adf0d1faa307f9f030889ec2aa"
|
||||||
|
|
||||||
# adds a tab completion callback: https://forgejo.ellis.link/continuwuation/rustyline-async/src/branch/main/.patchy/0002-add-tab-completion-callback.patch
|
# adds a tab completion callback: https://forgejo.ellis.link/continuwuation/rustyline-async/src/branch/main/.patchy/0002-add-tab-completion-callback.patch
|
||||||
# adds event for CTRL+\: https://forgejo.ellis.link/continuwuation/rustyline-async/src/branch/main/.patchy/0001-add-event-for-ctrl.patch
|
# adds event for CTRL+\: https://forgejo.ellis.link/continuwuation/rustyline-async/src/branch/main/.patchy/0001-add-event-for-ctrl.patch
|
||||||
@@ -587,7 +588,13 @@ rev = "9c8e51510c35077df888ee72a36b4b05637147da"
|
|||||||
# reverts hyperium#148 conflicting with our delicate federation resolver hooks
|
# reverts hyperium#148 conflicting with our delicate federation resolver hooks
|
||||||
[patch.crates-io.hyper-util]
|
[patch.crates-io.hyper-util]
|
||||||
git = "https://forgejo.ellis.link/continuwuation/hyper-util"
|
git = "https://forgejo.ellis.link/continuwuation/hyper-util"
|
||||||
rev = "5886d5292bf704c246206ad72d010d674a7b77d0"
|
rev = "e4ae7628fe4fcdacef9788c4c8415317a4489941"
|
||||||
|
|
||||||
|
# Allows no-aaaa option in resolv.conf
|
||||||
|
# Use 1-indexed line numbers when displaying parse error messages
|
||||||
|
[patch.crates-io.resolv-conf]
|
||||||
|
git = "https://forgejo.ellis.link/continuwuation/resolv-conf"
|
||||||
|
rev = "56251316cc4127bcbf36e68ce5e2093f4d33e227"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Our crates
|
# Our crates
|
||||||
@@ -752,6 +759,25 @@ incremental = true
|
|||||||
|
|
||||||
[profile.dev.package.conduwuit_core]
|
[profile.dev.package.conduwuit_core]
|
||||||
inherits = "dev"
|
inherits = "dev"
|
||||||
|
#rustflags = [
|
||||||
|
# '--cfg', 'conduwuit_mods',
|
||||||
|
# '-Ztime-passes',
|
||||||
|
# '-Zmir-opt-level=0',
|
||||||
|
# '-Ztls-model=initial-exec',
|
||||||
|
# '-Cprefer-dynamic=true',
|
||||||
|
# '-Zstaticlib-prefer-dynamic=true',
|
||||||
|
# '-Zstaticlib-allow-rdylib-deps=true',
|
||||||
|
# '-Zpacked-bundled-libs=false',
|
||||||
|
# '-Zplt=true',
|
||||||
|
# '-Clink-arg=-Wl,--as-needed',
|
||||||
|
# '-Clink-arg=-Wl,--allow-shlib-undefined',
|
||||||
|
# '-Clink-arg=-Wl,-z,lazy',
|
||||||
|
# '-Clink-arg=-Wl,-z,unique',
|
||||||
|
# '-Clink-arg=-Wl,-z,nodlopen',
|
||||||
|
# '-Clink-arg=-Wl,-z,nodelete',
|
||||||
|
#]
|
||||||
|
[profile.dev.package.xtask-generate-commands]
|
||||||
|
inherits = "dev"
|
||||||
[profile.dev.package.conduwuit]
|
[profile.dev.package.conduwuit]
|
||||||
inherits = "dev"
|
inherits = "dev"
|
||||||
#rustflags = [
|
#rustflags = [
|
||||||
@@ -841,7 +867,7 @@ unused-qualifications = "warn"
|
|||||||
#unused-results = "warn" # TODO
|
#unused-results = "warn" # TODO
|
||||||
|
|
||||||
## some sadness
|
## some sadness
|
||||||
mismatched_lifetime_syntaxes = "allow" # TODO!
|
elided_named_lifetimes = "allow" # TODO!
|
||||||
let_underscore_drop = "allow"
|
let_underscore_drop = "allow"
|
||||||
missing_docs = "allow"
|
missing_docs = "allow"
|
||||||
# cfgs cannot be limited to expected cfgs or their de facto non-transitive/opt-in use-case e.g.
|
# cfgs cannot be limited to expected cfgs or their de facto non-transitive/opt-in use-case e.g.
|
||||||
@@ -980,6 +1006,3 @@ literal_string_with_formatting_args = { level = "allow", priority = 1 }
|
|||||||
|
|
||||||
|
|
||||||
needless_raw_string_hashes = "allow"
|
needless_raw_string_hashes = "allow"
|
||||||
|
|
||||||
# TODO: Enable this lint & fix all instances
|
|
||||||
collapsible_if = "allow"
|
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ Continuwuity aims to:
|
|||||||
|
|
||||||
### Can I try it out?
|
### Can I try it out?
|
||||||
|
|
||||||
Check out the [documentation](https://continuwuity.org) for installation instructions.
|
Check out the [documentation](introduction) for installation instructions.
|
||||||
|
|
||||||
There are currently no open registration Continuwuity instances available.
|
There are currently no open registration Continuwuity instances available.
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,83 @@
|
|||||||
|
[Unit]
|
||||||
|
|
||||||
|
Description=Continuwuity - Matrix homeserver
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target
|
||||||
|
Documentation=https://continuwuity.org/
|
||||||
|
RequiresMountsFor=/var/lib/private/conduwuit
|
||||||
|
Alias=matrix-conduwuit.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
DynamicUser=yes
|
||||||
|
Type=notify-reload
|
||||||
|
ReloadSignal=SIGUSR1
|
||||||
|
|
||||||
|
TTYPath=/dev/tty25
|
||||||
|
DeviceAllow=char-tty
|
||||||
|
StandardInput=tty-force
|
||||||
|
StandardOutput=tty
|
||||||
|
StandardError=journal+console
|
||||||
|
|
||||||
|
Environment="CONTINUWUITY_LOG_TO_JOURNALD=true"
|
||||||
|
Environment="CONTINUWUITY_JOURNALD_IDENTIFIER=%N"
|
||||||
|
|
||||||
|
TTYReset=yes
|
||||||
|
# uncomment to allow buffer to be cleared every restart
|
||||||
|
TTYVTDisallocate=no
|
||||||
|
|
||||||
|
TTYColumns=120
|
||||||
|
TTYRows=40
|
||||||
|
|
||||||
|
AmbientCapabilities=
|
||||||
|
CapabilityBoundingSet=
|
||||||
|
|
||||||
|
DevicePolicy=closed
|
||||||
|
LockPersonality=yes
|
||||||
|
MemoryDenyWriteExecute=yes
|
||||||
|
NoNewPrivileges=yes
|
||||||
|
#ProcSubset=pid
|
||||||
|
ProtectClock=yes
|
||||||
|
ProtectControlGroups=yes
|
||||||
|
ProtectHome=yes
|
||||||
|
ProtectHostname=yes
|
||||||
|
ProtectKernelLogs=yes
|
||||||
|
ProtectKernelModules=yes
|
||||||
|
ProtectKernelTunables=yes
|
||||||
|
ProtectProc=invisible
|
||||||
|
ProtectSystem=strict
|
||||||
|
PrivateDevices=yes
|
||||||
|
PrivateMounts=yes
|
||||||
|
PrivateTmp=yes
|
||||||
|
PrivateUsers=yes
|
||||||
|
PrivateIPC=yes
|
||||||
|
RemoveIPC=yes
|
||||||
|
RestrictAddressFamilies=AF_INET AF_INET6 AF_UNIX
|
||||||
|
RestrictNamespaces=yes
|
||||||
|
RestrictRealtime=yes
|
||||||
|
RestrictSUIDSGID=yes
|
||||||
|
SystemCallArchitectures=native
|
||||||
|
SystemCallFilter=@system-service @resources
|
||||||
|
SystemCallFilter=~@clock @debug @module @mount @reboot @swap @cpu-emulation @obsolete @timer @chown @setuid @privileged @keyring @ipc
|
||||||
|
SystemCallErrorNumber=EPERM
|
||||||
|
StateDirectory=conduwuit
|
||||||
|
|
||||||
|
RuntimeDirectory=conduwuit
|
||||||
|
RuntimeDirectoryMode=0750
|
||||||
|
|
||||||
|
Environment=CONTINUWUITY_CONFIG=${CREDENTIALS_DIRECTORY}/config.toml
|
||||||
|
LoadCredential=config.toml:/etc/conduwuit/conduwuit.toml
|
||||||
|
BindPaths=/var/lib/private/conduwuit:/var/lib/matrix-conduit
|
||||||
|
BindPaths=/var/lib/private/conduwuit:/var/lib/private/matrix-conduit
|
||||||
|
|
||||||
|
ExecStart=/usr/bin/conduwuit
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=5
|
||||||
|
|
||||||
|
TimeoutStopSec=4m
|
||||||
|
TimeoutStartSec=4m
|
||||||
|
|
||||||
|
StartLimitInterval=1m
|
||||||
|
StartLimitBurst=5
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
+6
-134
@@ -79,11 +79,9 @@
|
|||||||
# This is the only directory where continuwuity will save its data,
|
# This is the only directory where continuwuity will save its data,
|
||||||
# including media. Note: this was previously "/var/lib/matrix-conduit".
|
# including media. Note: this was previously "/var/lib/matrix-conduit".
|
||||||
#
|
#
|
||||||
# YOU NEED TO EDIT THIS, UNLESS you are running continuwuity as a
|
# YOU NEED TO EDIT THIS.
|
||||||
# `systemd` service. The service file sets it to `/var/lib/conduwuit`
|
|
||||||
# using an environment variable and also grants write access.
|
|
||||||
#
|
#
|
||||||
# example: "/var/lib/conduwuit"
|
# example: "/var/lib/continuwuity"
|
||||||
#
|
#
|
||||||
#database_path =
|
#database_path =
|
||||||
|
|
||||||
@@ -591,19 +589,13 @@
|
|||||||
#
|
#
|
||||||
#default_room_version = 11
|
#default_room_version = 11
|
||||||
|
|
||||||
# Enable OpenTelemetry OTLP tracing export. This replaces the deprecated
|
# This item is undocumented. Please contribute documentation for it.
|
||||||
# Jaeger exporter. Traces will be sent via OTLP to a collector (such as
|
|
||||||
# Jaeger) that supports the OpenTelemetry Protocol.
|
|
||||||
#
|
#
|
||||||
# Configure your OTLP endpoint using the OTEL_EXPORTER_OTLP_ENDPOINT
|
#allow_jaeger = false
|
||||||
# environment variable (defaults to http://localhost:4318).
|
|
||||||
#
|
|
||||||
#allow_otlp = false
|
|
||||||
|
|
||||||
# Filter for OTLP tracing spans. This controls which spans are exported
|
# This item is undocumented. Please contribute documentation for it.
|
||||||
# to the OTLP collector.
|
|
||||||
#
|
#
|
||||||
#otlp_filter = "info"
|
#jaeger_filter = "info"
|
||||||
|
|
||||||
# If the 'perf_measurements' compile-time feature is enabled, enables
|
# If the 'perf_measurements' compile-time feature is enabled, enables
|
||||||
# collecting folded stack trace profile of tracing spans using
|
# collecting folded stack trace profile of tracing spans using
|
||||||
@@ -957,21 +949,6 @@
|
|||||||
#
|
#
|
||||||
#rocksdb_bottommost_compression = true
|
#rocksdb_bottommost_compression = true
|
||||||
|
|
||||||
# Compression algorithm for RocksDB's Write-Ahead-Log (WAL).
|
|
||||||
#
|
|
||||||
# At present, only ZSTD compression is supported by RocksDB for WAL
|
|
||||||
# compression. Enabling this can reduce WAL size at the expense of some
|
|
||||||
# CPU usage during writes.
|
|
||||||
#
|
|
||||||
# The options are:
|
|
||||||
# - "none" = No compression
|
|
||||||
# - "zstd" = ZSTD compression
|
|
||||||
#
|
|
||||||
# For more information on WAL compression, see:
|
|
||||||
# https://github.com/facebook/rocksdb/wiki/WAL-Compression
|
|
||||||
#
|
|
||||||
#rocksdb_wal_compression = "zstd"
|
|
||||||
|
|
||||||
# Database recovery mode (for RocksDB WAL corruption).
|
# Database recovery mode (for RocksDB WAL corruption).
|
||||||
#
|
#
|
||||||
# Use this option when the server reports corruption and refuses to start.
|
# Use this option when the server reports corruption and refuses to start.
|
||||||
@@ -1512,19 +1489,6 @@
|
|||||||
#
|
#
|
||||||
#block_non_admin_invites = false
|
#block_non_admin_invites = false
|
||||||
|
|
||||||
# Enable or disable making requests to MSC4284 Policy Servers.
|
|
||||||
# It is recommended you keep this enabled unless you experience frequent
|
|
||||||
# connectivity issues, such as in a restricted networking environment.
|
|
||||||
#
|
|
||||||
#enable_msc4284_policy_servers = true
|
|
||||||
|
|
||||||
# Enable running locally generated events through configured MSC4284
|
|
||||||
# policy servers. You may wish to disable this if your server is
|
|
||||||
# single-user for a slight speed benefit in some rooms, but otherwise
|
|
||||||
# should leave it enabled.
|
|
||||||
#
|
|
||||||
#policy_server_check_own_events = true
|
|
||||||
|
|
||||||
# Allow admins to enter commands in rooms other than "#admins" (admin
|
# Allow admins to enter commands in rooms other than "#admins" (admin
|
||||||
# room) by prefixing your message with "\!admin" or "\\!admin" followed up
|
# room) by prefixing your message with "\!admin" or "\\!admin" followed up
|
||||||
# a normal continuwuity admin command. The reply will be publicly visible
|
# a normal continuwuity admin command. The reply will be publicly visible
|
||||||
@@ -1732,10 +1696,6 @@
|
|||||||
#
|
#
|
||||||
#config_reload_signal = true
|
#config_reload_signal = true
|
||||||
|
|
||||||
# This item is undocumented. Please contribute documentation for it.
|
|
||||||
#
|
|
||||||
#ldap = false
|
|
||||||
|
|
||||||
[global.tls]
|
[global.tls]
|
||||||
|
|
||||||
# Path to a valid TLS certificate file.
|
# Path to a valid TLS certificate file.
|
||||||
@@ -1814,91 +1774,3 @@
|
|||||||
# is 33.55MB. Setting it to 0 disables blurhashing.
|
# is 33.55MB. Setting it to 0 disables blurhashing.
|
||||||
#
|
#
|
||||||
#blurhash_max_raw_size = 33554432
|
#blurhash_max_raw_size = 33554432
|
||||||
|
|
||||||
[global.ldap]
|
|
||||||
|
|
||||||
# Whether to enable LDAP login.
|
|
||||||
#
|
|
||||||
# example: "true"
|
|
||||||
#
|
|
||||||
#enable = false
|
|
||||||
|
|
||||||
# Whether to force LDAP authentication or authorize classical password
|
|
||||||
# login.
|
|
||||||
#
|
|
||||||
# example: "true"
|
|
||||||
#
|
|
||||||
#ldap_only = false
|
|
||||||
|
|
||||||
# URI of the LDAP server.
|
|
||||||
#
|
|
||||||
# example: "ldap://ldap.example.com:389"
|
|
||||||
#
|
|
||||||
#uri = ""
|
|
||||||
|
|
||||||
# Root of the searches.
|
|
||||||
#
|
|
||||||
# example: "ou=users,dc=example,dc=org"
|
|
||||||
#
|
|
||||||
#base_dn = ""
|
|
||||||
|
|
||||||
# Bind DN if anonymous search is not enabled.
|
|
||||||
#
|
|
||||||
# You can use the variable `{username}` that will be replaced by the
|
|
||||||
# entered username. In such case, the password used to bind will be the
|
|
||||||
# one provided for the login and not the one given by
|
|
||||||
# `bind_password_file`. Beware: automatically granting admin rights will
|
|
||||||
# not work if you use this direct bind instead of a LDAP search.
|
|
||||||
#
|
|
||||||
# example: "cn=ldap-reader,dc=example,dc=org" or
|
|
||||||
# "cn={username},ou=users,dc=example,dc=org"
|
|
||||||
#
|
|
||||||
#bind_dn = ""
|
|
||||||
|
|
||||||
# Path to a file on the system that contains the password for the
|
|
||||||
# `bind_dn`.
|
|
||||||
#
|
|
||||||
# The server must be able to access the file, and it must not be empty.
|
|
||||||
#
|
|
||||||
#bind_password_file = ""
|
|
||||||
|
|
||||||
# Search filter to limit user searches.
|
|
||||||
#
|
|
||||||
# You can use the variable `{username}` that will be replaced by the
|
|
||||||
# entered username for more complex filters.
|
|
||||||
#
|
|
||||||
# example: "(&(objectClass=person)(memberOf=matrix))"
|
|
||||||
#
|
|
||||||
#filter = "(objectClass=*)"
|
|
||||||
|
|
||||||
# Attribute to use to uniquely identify the user.
|
|
||||||
#
|
|
||||||
# example: "uid" or "cn"
|
|
||||||
#
|
|
||||||
#uid_attribute = "uid"
|
|
||||||
|
|
||||||
# Attribute containing the display name of the user.
|
|
||||||
#
|
|
||||||
# example: "givenName" or "sn"
|
|
||||||
#
|
|
||||||
#name_attribute = "givenName"
|
|
||||||
|
|
||||||
# Root of the searches for admin users.
|
|
||||||
#
|
|
||||||
# Defaults to `base_dn` if empty.
|
|
||||||
#
|
|
||||||
# example: "ou=admins,dc=example,dc=org"
|
|
||||||
#
|
|
||||||
#admin_base_dn = ""
|
|
||||||
|
|
||||||
# The LDAP search filter to find administrative users for continuwuity.
|
|
||||||
#
|
|
||||||
# If left blank, administrative state must be configured manually for each
|
|
||||||
# user.
|
|
||||||
#
|
|
||||||
# You can use the variable `{username}` that will be replaced by the
|
|
||||||
# entered username for more complex filters.
|
|
||||||
#
|
|
||||||
# example: "(objectClass=conduwuitAdmin)" or "(uid={username})"
|
|
||||||
#
|
|
||||||
#admin_filter = ""
|
|
||||||
|
|||||||
+4
-20
@@ -1,29 +1,13 @@
|
|||||||
# Continuwuity for Debian
|
# Continuwuity for Debian
|
||||||
|
|
||||||
This document provides information about downloading and deploying the Debian package. You can also use this guide for other deb-based distributions such as Ubuntu.
|
This document provides information about downloading and deploying the Debian package. You can also use this guide for other `apt`-based distributions such as Ubuntu.
|
||||||
|
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
To add the Continuwuation apt repository:
|
|
||||||
```bash
|
|
||||||
# Replace with `"dev"` for bleeding-edge builds at your own risk
|
|
||||||
export COMPONENT="stable"
|
|
||||||
# Import the Continuwuation signing key
|
|
||||||
sudo curl https://forgejo.ellis.link/api/packages/continuwuation/debian/repository.key -o /etc/apt/keyrings/forgejo-continuwuation.asc
|
|
||||||
# Add a new apt source list pointing to the repository
|
|
||||||
echo "deb [signed-by=/etc/apt/keyrings/forgejo-continuwuation.asc] https://forgejo.ellis.link/api/packages/continuwuation/debian $(lsb_release -sc) $COMPONENT" | sudo tee /etc/apt/sources.list.d/continuwuation.list
|
|
||||||
# Update remote package lists
|
|
||||||
sudo apt update
|
|
||||||
```
|
|
||||||
|
|
||||||
To install continuwuity:
|
|
||||||
```bash
|
|
||||||
sudo apt install continuwuity
|
|
||||||
```
|
|
||||||
The `continuwuity` package conflicts with the old `conduwuit` package and will remove it automatically when installed.
|
|
||||||
|
|
||||||
See the [generic deployment guide](../deploying/generic.md) for additional information about using the Debian package.
|
See the [generic deployment guide](../deploying/generic.md) for additional information about using the Debian package.
|
||||||
|
|
||||||
|
No `apt` repository is currently available. This feature is in development.
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|
||||||
After installation, Continuwuity places the example configuration at `/etc/conduwuit/conduwuit.toml` as the default configuration file. The configuration file indicates which settings you must change before starting the service.
|
After installation, Continuwuity places the example configuration at `/etc/conduwuit/conduwuit.toml` as the default configuration file. The configuration file indicates which settings you must change before starting the service.
|
||||||
@@ -32,7 +16,7 @@ You can customize additional settings by uncommenting and modifying the configur
|
|||||||
|
|
||||||
### Running
|
### Running
|
||||||
|
|
||||||
The package uses the [`conduwuit.service`](../configuration/examples.md#example-systemd-unit-file) systemd unit file to start and stop Continuwuity. The binary installs at `/usr/bin/conduwuit`.
|
The package uses the [`conduwuit.service`](../configuration/examples.md#example-systemd-unit-file) systemd unit file to start and stop Continuwuity. The binary installs at `/usr/sbin/conduwuit`.
|
||||||
|
|
||||||
By default, this package assumes that Continuwuity runs behind a reverse proxy. The default configuration options apply (listening on `localhost` and TCP port `6167`). Matrix federation requires a valid domain name and TLS. To federate properly, you must set up TLS certificates and certificate renewal.
|
By default, this package assumes that Continuwuity runs behind a reverse proxy. The default configuration options apply (listening on `localhost` and TCP port `6167`). Matrix federation requires a valid domain name and TLS. To federate properly, you must set up TLS certificates and certificate renewal.
|
||||||
|
|
||||||
+10
-12
@@ -1,25 +1,25 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
|
|
||||||
Description=Continuwuity - Matrix homeserver
|
Description=Continuwuity - Matrix homeserver
|
||||||
Documentation=https://continuwuity.org/
|
|
||||||
Wants=network-online.target
|
Wants=network-online.target
|
||||||
After=network-online.target
|
After=network-online.target
|
||||||
|
Documentation=https://continuwuity.org/
|
||||||
Alias=matrix-conduwuit.service
|
Alias=matrix-conduwuit.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
DynamicUser=yes
|
DynamicUser=yes
|
||||||
User=conduwuit
|
User=conduwuit
|
||||||
Group=conduwuit
|
Group=conduwuit
|
||||||
Type=notify-reload
|
Type=notify
|
||||||
ReloadSignal=SIGUSR1
|
|
||||||
|
Environment="CONTINUWUITY_CONFIG=/etc/conduwuit/conduwuit.toml"
|
||||||
|
|
||||||
Environment="CONTINUWUITY_LOG_TO_JOURNALD=true"
|
Environment="CONTINUWUITY_LOG_TO_JOURNALD=true"
|
||||||
Environment="CONTINUWUITY_JOURNALD_IDENTIFIER=%N"
|
Environment="CONTINUWUITY_JOURNALD_IDENTIFIER=%N"
|
||||||
Environment="CONTINUWUITY_DATABASE_PATH=%S/conduwuit"
|
|
||||||
Environment="CONTINUWUITY_CONFIG_RELOAD_SIGNAL=true"
|
|
||||||
|
|
||||||
LoadCredential=conduwuit.toml:/etc/conduwuit/conduwuit.toml
|
ExecStart=/usr/sbin/conduwuit
|
||||||
|
|
||||||
ExecStart=/usr/bin/conduwuit --config ${CREDENTIALS_DIRECTORY}/conduwuit.toml
|
ReadWritePaths=/var/lib/conduwuit /etc/conduwuit
|
||||||
|
|
||||||
AmbientCapabilities=
|
AmbientCapabilities=
|
||||||
CapabilityBoundingSet=
|
CapabilityBoundingSet=
|
||||||
@@ -52,18 +52,16 @@ SystemCallArchitectures=native
|
|||||||
SystemCallFilter=@system-service @resources
|
SystemCallFilter=@system-service @resources
|
||||||
SystemCallFilter=~@clock @debug @module @mount @reboot @swap @cpu-emulation @obsolete @timer @chown @setuid @privileged @keyring @ipc
|
SystemCallFilter=~@clock @debug @module @mount @reboot @swap @cpu-emulation @obsolete @timer @chown @setuid @privileged @keyring @ipc
|
||||||
SystemCallErrorNumber=EPERM
|
SystemCallErrorNumber=EPERM
|
||||||
|
#StateDirectory=conduwuit
|
||||||
|
|
||||||
# ConfigurationDirectory isn't specified here because it's created by
|
|
||||||
# the distro's package manager.
|
|
||||||
StateDirectory=conduwuit
|
|
||||||
RuntimeDirectory=conduwuit
|
RuntimeDirectory=conduwuit
|
||||||
RuntimeDirectoryMode=0750
|
RuntimeDirectoryMode=0750
|
||||||
|
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
RestartSec=5
|
RestartSec=5
|
||||||
|
|
||||||
TimeoutStopSec=4m
|
TimeoutStopSec=2m
|
||||||
TimeoutStartSec=4m
|
TimeoutStartSec=2m
|
||||||
|
|
||||||
StartLimitInterval=1m
|
StartLimitInterval=1m
|
||||||
StartLimitBurst=5
|
StartLimitBurst=5
|
||||||
Vendored
+44
@@ -0,0 +1,44 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# TODO: implement debconf support that is maintainable without duplicating the config
|
||||||
|
#. /usr/share/debconf/confmodule
|
||||||
|
|
||||||
|
CONDUWUIT_DATABASE_PATH=/var/lib/conduwuit
|
||||||
|
CONDUWUIT_CONFIG_PATH=/etc/conduwuit
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
configure)
|
||||||
|
# Create the `conduwuit` user if it does not exist yet.
|
||||||
|
if ! getent passwd conduwuit > /dev/null ; then
|
||||||
|
echo 'Adding system user for the conduwuit Matrix homeserver' 1>&2
|
||||||
|
adduser --system --group --quiet \
|
||||||
|
--home "$CONDUWUIT_DATABASE_PATH" \
|
||||||
|
--disabled-login \
|
||||||
|
--shell "/usr/sbin/nologin" \
|
||||||
|
conduwuit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create the database path if it does not exist yet and fix up ownership
|
||||||
|
# and permissions for the config.
|
||||||
|
mkdir -v -p "$CONDUWUIT_DATABASE_PATH"
|
||||||
|
|
||||||
|
# symlink the previous location for compatibility if it does not exist yet.
|
||||||
|
if ! test -L "/var/lib/matrix-conduit" ; then
|
||||||
|
ln -s -v "$CONDUWUIT_DATABASE_PATH" "/var/lib/matrix-conduit"
|
||||||
|
fi
|
||||||
|
|
||||||
|
chown -v conduwuit:conduwuit -R "$CONDUWUIT_DATABASE_PATH"
|
||||||
|
chown -v conduwuit:conduwuit -R "$CONDUWUIT_CONFIG_PATH"
|
||||||
|
|
||||||
|
chmod -v 740 "$CONDUWUIT_DATABASE_PATH"
|
||||||
|
|
||||||
|
echo ''
|
||||||
|
echo 'Make sure you edit the example config at /etc/conduwuit/conduwuit.toml before starting!'
|
||||||
|
echo 'To start the server, run: systemctl start conduwuit.service'
|
||||||
|
echo ''
|
||||||
|
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
Vendored
+8
-2
@@ -20,18 +20,24 @@ case $1 in
|
|||||||
|
|
||||||
if [ -d "$CONDUWUIT_CONFIG_PATH" ]; then
|
if [ -d "$CONDUWUIT_CONFIG_PATH" ]; then
|
||||||
if test -L "$CONDUWUIT_CONFIG_PATH"; then
|
if test -L "$CONDUWUIT_CONFIG_PATH"; then
|
||||||
echo "Deleting continuwuity configuration files"
|
echo "Deleting conduwuit configuration files"
|
||||||
rm -v -r "$CONDUWUIT_CONFIG_PATH"
|
rm -v -r "$CONDUWUIT_CONFIG_PATH"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "$CONDUWUIT_DATABASE_PATH" ]; then
|
if [ -d "$CONDUWUIT_DATABASE_PATH" ]; then
|
||||||
if test -L "$CONDUWUIT_DATABASE_PATH"; then
|
if test -L "$CONDUWUIT_DATABASE_PATH"; then
|
||||||
echo "Deleting continuwuity database directory"
|
echo "Deleting conduwuit database directory"
|
||||||
rm -r "$CONDUWUIT_DATABASE_PATH"
|
rm -r "$CONDUWUIT_DATABASE_PATH"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d "$CONDUWUIT_DATABASE_PATH_SYMLINK" ]; then
|
||||||
|
if test -L "$CONDUWUIT_DATABASE_SYMLINK"; then
|
||||||
|
echo "Removing matrix-conduit symlink"
|
||||||
|
rm -r "$CONDUWUIT_DATABASE_PATH_SYMLINK"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
+40
-77
@@ -48,13 +48,11 @@ EOF
|
|||||||
|
|
||||||
# Developer tool versions
|
# Developer tool versions
|
||||||
# renovate: datasource=github-releases depName=cargo-bins/cargo-binstall
|
# renovate: datasource=github-releases depName=cargo-bins/cargo-binstall
|
||||||
ENV BINSTALL_VERSION=1.15.10
|
ENV BINSTALL_VERSION=1.13.0
|
||||||
# renovate: datasource=github-releases depName=psastras/sbom-rs
|
# renovate: datasource=github-releases depName=psastras/sbom-rs
|
||||||
ENV CARGO_SBOM_VERSION=0.9.1
|
ENV CARGO_SBOM_VERSION=0.9.1
|
||||||
# renovate: datasource=crate depName=lddtree
|
# renovate: datasource=crate depName=lddtree
|
||||||
ENV LDDTREE_VERSION=0.3.7
|
ENV LDDTREE_VERSION=0.3.7
|
||||||
# renovate: datasource=crate depName=timelord-cli
|
|
||||||
ENV TIMELORD_VERSION=3.0.1
|
|
||||||
|
|
||||||
# Install unpackaged tools
|
# Install unpackaged tools
|
||||||
RUN <<EOF
|
RUN <<EOF
|
||||||
@@ -62,7 +60,6 @@ RUN <<EOF
|
|||||||
curl --retry 5 -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
|
curl --retry 5 -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
|
||||||
cargo binstall --no-confirm cargo-sbom --version $CARGO_SBOM_VERSION
|
cargo binstall --no-confirm cargo-sbom --version $CARGO_SBOM_VERSION
|
||||||
cargo binstall --no-confirm lddtree --version $LDDTREE_VERSION
|
cargo binstall --no-confirm lddtree --version $LDDTREE_VERSION
|
||||||
cargo binstall --no-confirm timelord-cli --version $TIMELORD_VERSION
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Set up xx (cross-compilation scripts)
|
# Set up xx (cross-compilation scripts)
|
||||||
@@ -81,20 +78,17 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY ./rust-toolchain.toml .
|
COPY ./rust-toolchain.toml .
|
||||||
RUN rustc --version \
|
RUN rustc --version \
|
||||||
&& xx-cargo --setup-target-triple
|
&& rustup target add $(xx-cargo --print-target-triple)
|
||||||
|
|
||||||
# Build binary
|
# Build binary
|
||||||
# Configure incremental compilation based on build context
|
# We disable incremental compilation to save disk space, as it only produces a minimal speedup for this case.
|
||||||
ARG CARGO_INCREMENTAL=0
|
RUN echo "CARGO_INCREMENTAL=0" >> /etc/environment
|
||||||
RUN echo "CARGO_INCREMENTAL=${CARGO_INCREMENTAL}" >> /etc/environment
|
|
||||||
|
|
||||||
# Configure pkg-config
|
# Configure pkg-config
|
||||||
RUN <<EOF
|
RUN <<EOF
|
||||||
set -o xtrace
|
set -o xtrace
|
||||||
if command -v "$(xx-info)-pkg-config" >/dev/null 2>/dev/null; then
|
echo "PKG_CONFIG_LIBDIR=/usr/lib/$(xx-info)/pkgconfig" >> /etc/environment
|
||||||
echo "PKG_CONFIG_LIBDIR=/usr/lib/$(xx-info)/pkgconfig" >> /etc/environment
|
echo "PKG_CONFIG=/usr/bin/$(xx-info)-pkg-config" >> /etc/environment
|
||||||
echo "PKG_CONFIG=/usr/bin/$(xx-info)-pkg-config" >> /etc/environment
|
|
||||||
fi
|
|
||||||
echo "PKG_CONFIG_ALLOW_CROSS=true" >> /etc/environment
|
echo "PKG_CONFIG_ALLOW_CROSS=true" >> /etc/environment
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
@@ -115,17 +109,16 @@ RUN <<EOF
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Apply CPU-specific optimizations if TARGET_CPU is provided
|
# Apply CPU-specific optimizations if TARGET_CPU is provided
|
||||||
ARG TARGET_CPU
|
ARG TARGET_CPU=
|
||||||
|
|
||||||
RUN <<EOF
|
RUN <<EOF
|
||||||
set -o allexport
|
set -o allexport
|
||||||
set -o xtrace
|
set -o xtrace
|
||||||
. /etc/environment
|
. /etc/environment
|
||||||
if [ -n "${TARGET_CPU}" ]; then
|
if [ -n "${TARGET_CPU}" ]; then
|
||||||
echo "CFLAGS='${CFLAGS} -march=${TARGET_CPU}'" >> /etc/environment
|
echo "CFLAGS='${CFLAGS} -march=${TARGET_CPU}'" >> /etc/environment
|
||||||
echo "CXXFLAGS='${CXXFLAGS} -march=${TARGET_CPU}'" >> /etc/environment
|
echo "CXXFLAGS='${CXXFLAGS} -march=${TARGET_CPU}'" >> /etc/environment
|
||||||
echo "RUSTFLAGS='${RUSTFLAGS} -C target-cpu=${TARGET_CPU}'" >> /etc/environment
|
echo "RUSTFLAGS='${RUSTFLAGS} -C target-cpu=${TARGET_CPU}'" >> /etc/environment
|
||||||
fi
|
fi
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Prepare output directories
|
# Prepare output directories
|
||||||
@@ -137,23 +130,18 @@ FROM toolchain AS builder
|
|||||||
# Get source
|
# Get source
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Restore timestamps from timelord cache if available
|
|
||||||
RUN --mount=type=cache,target=/timelord/ \
|
|
||||||
echo "Restoring timestamps from timelord cache"; \
|
|
||||||
timelord sync --source-dir /app --cache-dir /timelord;
|
|
||||||
|
|
||||||
ARG TARGETPLATFORM
|
ARG TARGETPLATFORM
|
||||||
|
|
||||||
# Verify environment configuration
|
# Verify environment configuration
|
||||||
RUN xx-cargo --print-target-triple
|
RUN xx-cargo --print-target-triple
|
||||||
|
|
||||||
# Conduwuit version info
|
# Conduwuit version info
|
||||||
ARG GIT_COMMIT_HASH
|
ARG GIT_COMMIT_HASH=
|
||||||
ARG GIT_COMMIT_HASH_SHORT
|
ARG GIT_COMMIT_HASH_SHORT=
|
||||||
ARG GIT_REMOTE_URL
|
ARG GIT_REMOTE_URL=
|
||||||
ARG GIT_REMOTE_COMMIT_URL
|
ARG GIT_REMOTE_COMMIT_URL=
|
||||||
ARG CONDUWUIT_VERSION_EXTRA
|
ARG CONDUWUIT_VERSION_EXTRA=
|
||||||
ARG CONTINUWUITY_VERSION_EXTRA
|
ARG CONTINUWUITY_VERSION_EXTRA=
|
||||||
ENV GIT_COMMIT_HASH=$GIT_COMMIT_HASH
|
ENV GIT_COMMIT_HASH=$GIT_COMMIT_HASH
|
||||||
ENV GIT_COMMIT_HASH_SHORT=$GIT_COMMIT_HASH_SHORT
|
ENV GIT_COMMIT_HASH_SHORT=$GIT_COMMIT_HASH_SHORT
|
||||||
ENV GIT_REMOTE_URL=$GIT_REMOTE_URL
|
ENV GIT_REMOTE_URL=$GIT_REMOTE_URL
|
||||||
@@ -166,7 +154,7 @@ ARG RUST_PROFILE=release
|
|||||||
# Build the binary
|
# Build the binary
|
||||||
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
||||||
--mount=type=cache,target=/usr/local/cargo/git/db \
|
--mount=type=cache,target=/usr/local/cargo/git/db \
|
||||||
--mount=type=cache,target=/app/target,id=continuwuity-cargo-target-${TARGET_CPU}-${TARGETPLATFORM}-${RUST_PROFILE} \
|
--mount=type=cache,target=/app/target,id=cargo-target-${TARGET_CPU}-${TARGETPLATFORM}-${RUST_PROFILE} \
|
||||||
bash <<'EOF'
|
bash <<'EOF'
|
||||||
set -o allexport
|
set -o allexport
|
||||||
set -o xtrace
|
set -o xtrace
|
||||||
@@ -181,8 +169,8 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|||||||
jq -r ".packages[] | select(.name == \"$PACKAGE\") | .targets[] | select( .kind | map(. == \"bin\") | any ) | .name"))
|
jq -r ".packages[] | select(.name == \"$PACKAGE\") | .targets[] | select( .kind | map(. == \"bin\") | any ) | .name"))
|
||||||
for BINARY in "${BINARIES[@]}"; do
|
for BINARY in "${BINARIES[@]}"; do
|
||||||
echo $BINARY
|
echo $BINARY
|
||||||
xx-verify $TARGET_DIR/$(xx-cargo --print-target-triple)/${RUST_PROFILE}/$BINARY
|
xx-verify $TARGET_DIR/$(xx-cargo --print-target-triple)/release/$BINARY
|
||||||
cp $TARGET_DIR/$(xx-cargo --print-target-triple)/${RUST_PROFILE}/$BINARY /out/sbin/$BINARY
|
cp $TARGET_DIR/$(xx-cargo --print-target-triple)/release/$BINARY /out/sbin/$BINARY
|
||||||
done
|
done
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
@@ -208,57 +196,32 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Extract dynamically linked dependencies
|
# Extract dynamically linked dependencies
|
||||||
RUN <<'DEPS_EOF'
|
RUN <<EOF
|
||||||
set -o xtrace
|
set -o xtrace
|
||||||
mkdir /out/libs /out/libs-root
|
mkdir /out/libs
|
||||||
|
mkdir /out/libs-root
|
||||||
# Process each binary
|
|
||||||
for BINARY in /out/sbin/*; do
|
for BINARY in /out/sbin/*; do
|
||||||
if lddtree_output=$(lddtree "$BINARY" 2>/dev/null) && [ -n "$lddtree_output" ]; then
|
lddtree "$BINARY" | awk '{print $(NF-0) " " $1}' | sort -u -k 1,1 | awk '{print "install", "-D", $1, (($2 ~ /^\//) ? "/out/libs-root" $2 : "/out/libs/" $2)}' | xargs -I {} sh -c {}
|
||||||
echo "$lddtree_output" | awk '{print $(NF-0) " " $1}' | sort -u -k 1,1 | \
|
|
||||||
awk '{dest = ($2 ~ /^\//) ? "/out/libs-root" $2 : "/out/libs/" $2; print "install -D " $1 " " dest}' | \
|
|
||||||
while read cmd; do eval "$cmd"; done
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
EOF
|
||||||
# Show what will be copied to runtime
|
|
||||||
echo "=== Libraries being copied to runtime image:"
|
|
||||||
find /out/libs* -type f 2>/dev/null | sort || echo "No libraries found"
|
|
||||||
DEPS_EOF
|
|
||||||
|
|
||||||
FROM ubuntu:latest AS prepper
|
|
||||||
|
|
||||||
# Create layer structure
|
|
||||||
RUN mkdir -p /layer1/etc/ssl/certs \
|
|
||||||
/layer2/usr/lib \
|
|
||||||
/layer3/sbin /layer3/sbom
|
|
||||||
|
|
||||||
# Copy SSL certs and root-path libraries to layer1 (ultra-stable)
|
|
||||||
COPY --from=base /etc/ssl/certs /layer1/etc/ssl/certs
|
|
||||||
COPY --from=builder /out/libs-root/ /layer1/
|
|
||||||
|
|
||||||
# Copy application libraries to layer2 (semi-stable)
|
|
||||||
COPY --from=builder /out/libs/ /layer2/usr/lib/
|
|
||||||
|
|
||||||
# Copy binaries and SBOM to layer3 (volatile)
|
|
||||||
COPY --from=builder /out/sbin/ /layer3/sbin/
|
|
||||||
COPY --from=builder /out/sbom/ /layer3/sbom/
|
|
||||||
|
|
||||||
# Fix permissions after copying
|
|
||||||
RUN chmod -R 755 /layer1 /layer2 /layer3
|
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
|
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
# Copy ultra-stable layer (SSL certs, system libraries)
|
# Copy root certs for tls into image
|
||||||
COPY --from=prepper /layer1/ /
|
# You can also mount the certs from the host
|
||||||
|
# --volume /etc/ssl/certs:/etc/ssl/certs:ro
|
||||||
|
COPY --from=base /etc/ssl/certs /etc/ssl/certs
|
||||||
|
|
||||||
# Copy semi-stable layer (application libraries)
|
# Copy our build
|
||||||
COPY --from=prepper /layer2/ /
|
COPY --from=builder /out/sbin/ /sbin/
|
||||||
|
# Copy SBOM
|
||||||
|
COPY --from=builder /out/sbom/ /sbom/
|
||||||
|
|
||||||
# Copy volatile layer (binaries, SBOM)
|
# Copy dynamic libraries to root
|
||||||
COPY --from=prepper /layer3/ /
|
COPY --from=builder /out/libs-root/ /
|
||||||
|
COPY --from=builder /out/libs/ /usr/lib/
|
||||||
|
|
||||||
# Inform linker where to find libraries
|
# Inform linker where to find libraries
|
||||||
ENV LD_LIBRARY_PATH=/usr/lib
|
ENV LD_LIBRARY_PATH=/usr/lib
|
||||||
|
|||||||
@@ -1,200 +0,0 @@
|
|||||||
# Why does this exist?
|
|
||||||
# Debian doesn't provide prebuilt musl packages
|
|
||||||
# rocksdb requires a prebuilt liburing, and linking fails if a gnu one is provided
|
|
||||||
|
|
||||||
ARG RUST_VERSION=1
|
|
||||||
ARG ALPINE_VERSION=3.22
|
|
||||||
|
|
||||||
FROM --platform=$BUILDPLATFORM docker.io/tonistiigi/xx AS xx
|
|
||||||
FROM --platform=$BUILDPLATFORM rust:${RUST_VERSION}-alpine${ALPINE_VERSION} AS base
|
|
||||||
FROM --platform=$BUILDPLATFORM rust:${RUST_VERSION}-alpine${ALPINE_VERSION} AS toolchain
|
|
||||||
|
|
||||||
# Install repo tools and dependencies
|
|
||||||
RUN --mount=type=cache,target=/etc/apk/cache apk add \
|
|
||||||
build-base pkgconfig make jq bash \
|
|
||||||
curl git file \
|
|
||||||
llvm-dev clang clang-static lld
|
|
||||||
|
|
||||||
|
|
||||||
# Developer tool versions
|
|
||||||
# renovate: datasource=github-releases depName=cargo-bins/cargo-binstall
|
|
||||||
ENV BINSTALL_VERSION=1.15.10
|
|
||||||
# renovate: datasource=github-releases depName=psastras/sbom-rs
|
|
||||||
ENV CARGO_SBOM_VERSION=0.9.1
|
|
||||||
# renovate: datasource=crate depName=lddtree
|
|
||||||
ENV LDDTREE_VERSION=0.3.7
|
|
||||||
|
|
||||||
# Install unpackaged tools
|
|
||||||
RUN <<EOF
|
|
||||||
set -o xtrace
|
|
||||||
curl --retry 5 -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
|
|
||||||
cargo binstall --no-confirm cargo-sbom --version $CARGO_SBOM_VERSION
|
|
||||||
cargo binstall --no-confirm lddtree --version $LDDTREE_VERSION
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Set up xx (cross-compilation scripts)
|
|
||||||
COPY --from=xx / /
|
|
||||||
ARG TARGETPLATFORM
|
|
||||||
|
|
||||||
# Install libraries linked by the binary
|
|
||||||
RUN --mount=type=cache,target=/etc/apk/cache xx-apk add musl-dev gcc g++ liburing-dev
|
|
||||||
|
|
||||||
# Set up Rust toolchain
|
|
||||||
WORKDIR /app
|
|
||||||
COPY ./rust-toolchain.toml .
|
|
||||||
RUN rustc --version \
|
|
||||||
&& xx-cargo --setup-target-triple
|
|
||||||
|
|
||||||
# Build binary
|
|
||||||
# We disable incremental compilation to save disk space, as it only produces a minimal speedup for this case.
|
|
||||||
RUN echo "CARGO_INCREMENTAL=0" >> /etc/environment
|
|
||||||
|
|
||||||
# Configure pkg-config
|
|
||||||
RUN <<EOF
|
|
||||||
set -o xtrace
|
|
||||||
if command -v "$(xx-info)-pkg-config" >/dev/null 2>/dev/null; then
|
|
||||||
echo "PKG_CONFIG_LIBDIR=/usr/lib/$(xx-info)/pkgconfig" >> /etc/environment
|
|
||||||
echo "PKG_CONFIG=/usr/bin/$(xx-info)-pkg-config" >> /etc/environment
|
|
||||||
fi
|
|
||||||
echo "PKG_CONFIG_ALLOW_CROSS=true" >> /etc/environment
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Configure cc to use clang version
|
|
||||||
RUN <<EOF
|
|
||||||
set -o xtrace
|
|
||||||
echo "CC=clang" >> /etc/environment
|
|
||||||
echo "CXX=clang++" >> /etc/environment
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Cross-language LTO
|
|
||||||
RUN <<EOF
|
|
||||||
set -o xtrace
|
|
||||||
echo "CFLAGS=-flto" >> /etc/environment
|
|
||||||
echo "CXXFLAGS=-flto" >> /etc/environment
|
|
||||||
# Linker is set to target-compatible clang by xx
|
|
||||||
echo "RUSTFLAGS='-Clinker-plugin-lto -Clink-arg=-fuse-ld=lld'" >> /etc/environment
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Apply CPU-specific optimizations if TARGET_CPU is provided
|
|
||||||
ARG TARGET_CPU
|
|
||||||
|
|
||||||
RUN <<EOF
|
|
||||||
set -o allexport
|
|
||||||
set -o xtrace
|
|
||||||
. /etc/environment
|
|
||||||
if [ -n "${TARGET_CPU}" ]; then
|
|
||||||
echo "CFLAGS='${CFLAGS} -march=${TARGET_CPU}'" >> /etc/environment
|
|
||||||
echo "CXXFLAGS='${CXXFLAGS} -march=${TARGET_CPU}'" >> /etc/environment
|
|
||||||
echo "RUSTFLAGS='${RUSTFLAGS} -C target-cpu=${TARGET_CPU}'" >> /etc/environment
|
|
||||||
fi
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Prepare output directories
|
|
||||||
RUN mkdir /out
|
|
||||||
|
|
||||||
FROM toolchain AS builder
|
|
||||||
|
|
||||||
|
|
||||||
# Get source
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
ARG TARGETPLATFORM
|
|
||||||
|
|
||||||
# Verify environment configuration
|
|
||||||
RUN xx-cargo --print-target-triple
|
|
||||||
|
|
||||||
# Conduwuit version info
|
|
||||||
ARG GIT_COMMIT_HASH
|
|
||||||
ARG GIT_COMMIT_HASH_SHORT
|
|
||||||
ARG GIT_REMOTE_URL
|
|
||||||
ARG GIT_REMOTE_COMMIT_URL
|
|
||||||
ARG CONDUWUIT_VERSION_EXTRA
|
|
||||||
ARG CONTINUWUITY_VERSION_EXTRA
|
|
||||||
ENV GIT_COMMIT_HASH=$GIT_COMMIT_HASH
|
|
||||||
ENV GIT_COMMIT_HASH_SHORT=$GIT_COMMIT_HASH_SHORT
|
|
||||||
ENV GIT_REMOTE_URL=$GIT_REMOTE_URL
|
|
||||||
ENV GIT_REMOTE_COMMIT_URL=$GIT_REMOTE_COMMIT_URL
|
|
||||||
ENV CONDUWUIT_VERSION_EXTRA=$CONDUWUIT_VERSION_EXTRA
|
|
||||||
ENV CONTINUWUITY_VERSION_EXTRA=$CONTINUWUITY_VERSION_EXTRA
|
|
||||||
|
|
||||||
ARG RUST_PROFILE=release
|
|
||||||
|
|
||||||
# Build the binary
|
|
||||||
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|
||||||
--mount=type=cache,target=/usr/local/cargo/git/db \
|
|
||||||
--mount=type=cache,target=/app/target,id=continuwuity-cargo-target-${TARGET_CPU}-${TARGETPLATFORM}-musl-${RUST_PROFILE} \
|
|
||||||
bash <<'EOF'
|
|
||||||
set -o allexport
|
|
||||||
set -o xtrace
|
|
||||||
. /etc/environment
|
|
||||||
TARGET_DIR=($(cargo metadata --no-deps --format-version 1 | \
|
|
||||||
jq -r ".target_directory"))
|
|
||||||
mkdir /out/sbin
|
|
||||||
PACKAGE=conduwuit
|
|
||||||
xx-cargo build --locked --profile ${RUST_PROFILE} \
|
|
||||||
-p $PACKAGE --no-default-features --features bindgen-static,release_max_log_level,standard;
|
|
||||||
BINARIES=($(cargo metadata --no-deps --format-version 1 | \
|
|
||||||
jq -r ".packages[] | select(.name == \"$PACKAGE\") | .targets[] | select( .kind | map(. == \"bin\") | any ) | .name"))
|
|
||||||
for BINARY in "${BINARIES[@]}"; do
|
|
||||||
echo $BINARY
|
|
||||||
xx-verify $TARGET_DIR/$(xx-cargo --print-target-triple)/release/$BINARY
|
|
||||||
cp $TARGET_DIR/$(xx-cargo --print-target-triple)/release/$BINARY /out/sbin/$BINARY
|
|
||||||
done
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Generate Software Bill of Materials (SBOM)
|
|
||||||
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|
||||||
--mount=type=cache,target=/usr/local/cargo/git/db \
|
|
||||||
bash <<'EOF'
|
|
||||||
set -o xtrace
|
|
||||||
mkdir /out/sbom
|
|
||||||
typeset -A PACKAGES
|
|
||||||
for BINARY in /out/sbin/*; do
|
|
||||||
BINARY_BASE=$(basename ${BINARY})
|
|
||||||
package=$(cargo metadata --no-deps --format-version 1 | jq -r ".packages[] | select(.targets[] | select( .kind | map(. == \"bin\") | any ) | .name == \"$BINARY_BASE\") | .name")
|
|
||||||
if [ -z "$package" ]; then
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
PACKAGES[$package]=1
|
|
||||||
done
|
|
||||||
for PACKAGE in $(echo ${!PACKAGES[@]}); do
|
|
||||||
echo $PACKAGE
|
|
||||||
cargo sbom --cargo-package $PACKAGE > /out/sbom/$PACKAGE.spdx.json
|
|
||||||
done
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Extract dynamically linked dependencies
|
|
||||||
RUN <<EOF
|
|
||||||
set -o xtrace
|
|
||||||
mkdir /out/libs
|
|
||||||
mkdir /out/libs-root
|
|
||||||
for BINARY in /out/sbin/*; do
|
|
||||||
lddtree "$BINARY" | awk '{print $(NF-0) " " $1}' | sort -u -k 1,1 | awk '{print "install", "-D", $1, (($2 ~ /^\//) ? "/out/libs-root" $2 : "/out/libs/" $2)}' | xargs -I {} sh -c {}
|
|
||||||
done
|
|
||||||
EOF
|
|
||||||
|
|
||||||
FROM scratch
|
|
||||||
|
|
||||||
WORKDIR /
|
|
||||||
|
|
||||||
# Copy root certs for tls into image
|
|
||||||
# You can also mount the certs from the host
|
|
||||||
# --volume /etc/ssl/certs:/etc/ssl/certs:ro
|
|
||||||
COPY --from=base /etc/ssl/certs /etc/ssl/certs
|
|
||||||
|
|
||||||
# Copy our build
|
|
||||||
COPY --from=builder /out/sbin/ /sbin/
|
|
||||||
# Copy SBOM
|
|
||||||
COPY --from=builder /out/sbom/ /sbom/
|
|
||||||
|
|
||||||
# Copy dynamic libraries to root
|
|
||||||
COPY --from=builder /out/libs-root/ /
|
|
||||||
COPY --from=builder /out/libs/ /usr/lib/
|
|
||||||
|
|
||||||
# Inform linker where to find libraries
|
|
||||||
ENV LD_LIBRARY_PATH=/usr/lib
|
|
||||||
|
|
||||||
# Continuwuity default port
|
|
||||||
EXPOSE 8008
|
|
||||||
|
|
||||||
CMD ["/sbin/conduwuit"]
|
|
||||||
@@ -10,7 +10,6 @@
|
|||||||
- [Kubernetes](deploying/kubernetes.md)
|
- [Kubernetes](deploying/kubernetes.md)
|
||||||
- [Arch Linux](deploying/arch-linux.md)
|
- [Arch Linux](deploying/arch-linux.md)
|
||||||
- [Debian](deploying/debian.md)
|
- [Debian](deploying/debian.md)
|
||||||
- [Fedora](deploying/fedora.md)
|
|
||||||
- [FreeBSD](deploying/freebsd.md)
|
- [FreeBSD](deploying/freebsd.md)
|
||||||
- [TURN](turn.md)
|
- [TURN](turn.md)
|
||||||
- [Appservices](appservices.md)
|
- [Appservices](appservices.md)
|
||||||
|
|||||||
+3
-33
@@ -21,7 +21,6 @@ This document contains the help content for the `admin` command-line program.
|
|||||||
* [`admin users list-joined-rooms`↴](#admin-users-list-joined-rooms)
|
* [`admin users list-joined-rooms`↴](#admin-users-list-joined-rooms)
|
||||||
* [`admin users force-join-room`↴](#admin-users-force-join-room)
|
* [`admin users force-join-room`↴](#admin-users-force-join-room)
|
||||||
* [`admin users force-leave-room`↴](#admin-users-force-leave-room)
|
* [`admin users force-leave-room`↴](#admin-users-force-leave-room)
|
||||||
* [`admin users force-leave-remote-room`↴](#admin-users-force-leave-remote-room)
|
|
||||||
* [`admin users force-demote`↴](#admin-users-force-demote)
|
* [`admin users force-demote`↴](#admin-users-force-demote)
|
||||||
* [`admin users make-user-admin`↴](#admin-users-make-user-admin)
|
* [`admin users make-user-admin`↴](#admin-users-make-user-admin)
|
||||||
* [`admin users put-room-tag`↴](#admin-users-put-room-tag)
|
* [`admin users put-room-tag`↴](#admin-users-put-room-tag)
|
||||||
@@ -296,7 +295,6 @@ You can find the ID using the `list-appservices` command.
|
|||||||
* `list-joined-rooms` — - Lists all the rooms (local and remote) that the specified user is joined in
|
* `list-joined-rooms` — - Lists all the rooms (local and remote) that the specified user is joined in
|
||||||
* `force-join-room` — - Manually join a local user to a room
|
* `force-join-room` — - Manually join a local user to a room
|
||||||
* `force-leave-room` — - Manually leave a local user from a room
|
* `force-leave-room` — - Manually leave a local user from a room
|
||||||
* `force-leave-remote-room` — - Manually leave a remote room for a local user
|
|
||||||
* `force-demote` — - Forces the specified user to drop their power levels to the room default, if their permissions allow and the auth check permits
|
* `force-demote` — - Forces the specified user to drop their power levels to the room default, if their permissions allow and the auth check permits
|
||||||
* `make-user-admin` — - Grant server-admin privileges to a user
|
* `make-user-admin` — - Grant server-admin privileges to a user
|
||||||
* `put-room-tag` — - Puts a room tag for the specified user and room ID
|
* `put-room-tag` — - Puts a room tag for the specified user and room ID
|
||||||
@@ -451,19 +449,6 @@ Reverses the effects of the `suspend` command, allowing the user to send message
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
## `admin users force-leave-remote-room`
|
|
||||||
|
|
||||||
- Manually leave a remote room for a local user
|
|
||||||
|
|
||||||
**Usage:** `admin users force-leave-remote-room <USER_ID> <ROOM_ID>`
|
|
||||||
|
|
||||||
###### **Arguments:**
|
|
||||||
|
|
||||||
* `<USER_ID>`
|
|
||||||
* `<ROOM_ID>`
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## `admin users force-demote`
|
## `admin users force-demote`
|
||||||
|
|
||||||
- Forces the specified user to drop their power levels to the room default, if their permissions allow and the auth check permits
|
- Forces the specified user to drop their power levels to the room default, if their permissions allow and the auth check permits
|
||||||
@@ -1078,10 +1063,7 @@ Respecting homeservers put this file here for listing administration, moderation
|
|||||||
|
|
||||||
* `delete` — - Deletes a single media file from our database and on the filesystem via a single MXC URL or event ID (not redacted)
|
* `delete` — - Deletes a single media file from our database and on the filesystem via a single MXC URL or event ID (not redacted)
|
||||||
* `delete-list` — - Deletes a codeblock list of MXC URLs from our database and on the filesystem. This will always ignore errors
|
* `delete-list` — - Deletes a codeblock list of MXC URLs from our database and on the filesystem. This will always ignore errors
|
||||||
* `delete-past-remote-media` — Deletes all remote (and optionally local) media created before/after
|
* `delete-past-remote-media` — - Deletes all remote (and optionally local) media created before or after [duration] time using filesystem metadata first created at date, or fallback to last modified date. This will always ignore errors by default
|
||||||
[duration] ago, using filesystem metadata first created at date, or
|
|
||||||
fallback to last modified date. This will always ignore errors by
|
|
||||||
default.
|
|
||||||
* `delete-all-from-user` — - Deletes all the local media from a local user on our server. This will always ignore errors by default
|
* `delete-all-from-user` — - Deletes all the local media from a local user on our server. This will always ignore errors by default
|
||||||
* `delete-all-from-server` — - Deletes all remote media from the specified remote server. This will always ignore errors by default
|
* `delete-all-from-server` — - Deletes all remote media from the specified remote server. This will always ignore errors by default
|
||||||
* `get-file-info` —
|
* `get-file-info` —
|
||||||
@@ -1113,25 +1095,13 @@ default.
|
|||||||
|
|
||||||
## `admin media delete-past-remote-media`
|
## `admin media delete-past-remote-media`
|
||||||
|
|
||||||
Deletes all remote (and optionally local) media created before/after
|
- Deletes all remote (and optionally local) media created before or after [duration] time using filesystem metadata first created at date, or fallback to last modified date. This will always ignore errors by default
|
||||||
[duration] ago, using filesystem metadata first created at date, or
|
|
||||||
fallback to last modified date. This will always ignore errors by
|
|
||||||
default.
|
|
||||||
|
|
||||||
* Examples:
|
|
||||||
* Delete all remote media older than a year:
|
|
||||||
|
|
||||||
`!admin media delete-past-remote-media -b 1y`
|
|
||||||
|
|
||||||
* Delete all remote and local media from 3 days ago, up until now:
|
|
||||||
|
|
||||||
`!admin media delete-past-remote-media -a 3d --yes-i-want-to-delete-local-media`
|
|
||||||
|
|
||||||
**Usage:** `admin media delete-past-remote-media [OPTIONS] <DURATION>`
|
**Usage:** `admin media delete-past-remote-media [OPTIONS] <DURATION>`
|
||||||
|
|
||||||
###### **Arguments:**
|
###### **Arguments:**
|
||||||
|
|
||||||
* `<DURATION>` — - The relative time (e.g. 30s, 5m, 7d) from now within which to search
|
* `<DURATION>` — - The relative time (e.g. 30s, 5m, 7d) within which to search
|
||||||
|
|
||||||
###### **Options:**
|
###### **Options:**
|
||||||
|
|
||||||
|
|||||||
@@ -9,11 +9,24 @@
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
## systemd unit file
|
## Debian systemd unit file
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>systemd unit file</summary>
|
<summary>Debian systemd unit file</summary>
|
||||||
|
|
||||||
```
|
```
|
||||||
{{#include ../../pkg/conduwuit.service}}
|
{{#include ../../debian/conduwuit.service}}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
## Arch Linux systemd unit file
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Arch Linux systemd unit file</summary>
|
||||||
|
|
||||||
|
```
|
||||||
|
{{#include ../../arch/conduwuit.service}}
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{{#include ../../pkg/debian/README.md}}
|
{{#include ../../debian/README.md}}
|
||||||
|
|||||||
@@ -12,15 +12,6 @@ services:
|
|||||||
#- ./continuwuity.toml:/etc/continuwuity.toml
|
#- ./continuwuity.toml:/etc/continuwuity.toml
|
||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
labels:
|
|
||||||
- "traefik.enable=true"
|
|
||||||
- "traefik.http.routers.continuwuity.rule=(Host(`matrix.example.com`) || (Host(`example.com`) && PathPrefix(`/.well-known/matrix`)))"
|
|
||||||
- "traefik.http.routers.continuwuity.entrypoints=websecure" # your HTTPS entry point
|
|
||||||
- "traefik.http.routers.continuwuity.tls=true"
|
|
||||||
- "traefik.http.routers.continuwuity.service=continuwuity"
|
|
||||||
- "traefik.http.services.continuwuity.loadbalancer.server.port=6167"
|
|
||||||
# possibly, depending on your config:
|
|
||||||
# - "traefik.http.routers.continuwuity.tls.certresolver=letsencrypt"
|
|
||||||
environment:
|
environment:
|
||||||
CONTINUWUITY_SERVER_NAME: your.server.name.example # EDIT THIS
|
CONTINUWUITY_SERVER_NAME: your.server.name.example # EDIT THIS
|
||||||
CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity
|
CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity
|
||||||
|
|||||||
@@ -12,14 +12,6 @@ services:
|
|||||||
#- ./continuwuity.toml:/etc/continuwuity.toml
|
#- ./continuwuity.toml:/etc/continuwuity.toml
|
||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
labels:
|
|
||||||
- "traefik.enable=true"
|
|
||||||
- "traefik.http.routers.continuwuity.rule=(Host(`matrix.example.com`) || (Host(`example.com`) && PathPrefix(`/.well-known/matrix`)))"
|
|
||||||
- "traefik.http.routers.continuwuity.entrypoints=websecure"
|
|
||||||
- "traefik.http.routers.continuwuity.tls.certresolver=letsencrypt"
|
|
||||||
- "traefik.http.services.continuwuity.loadbalancer.server.port=6167"
|
|
||||||
# Uncomment and adjust the following if you want to use middleware
|
|
||||||
# - "traefik.http.routers.continuwuity.middlewares=secureHeaders@file"
|
|
||||||
environment:
|
environment:
|
||||||
CONTINUWUITY_SERVER_NAME: your.server.name.example # EDIT THIS
|
CONTINUWUITY_SERVER_NAME: your.server.name.example # EDIT THIS
|
||||||
CONTINUWUITY_TRUSTED_SERVERS: '["matrix.org"]'
|
CONTINUWUITY_TRUSTED_SERVERS: '["matrix.org"]'
|
||||||
|
|||||||
@@ -1,201 +0,0 @@
|
|||||||
# RPM Installation Guide
|
|
||||||
|
|
||||||
Continuwuity is available as RPM packages for Fedora, RHEL, and compatible distributions.
|
|
||||||
|
|
||||||
The RPM packaging files are maintained in the `fedora/` directory:
|
|
||||||
- `continuwuity.spec.rpkg` - RPM spec file using rpkg macros for building from git
|
|
||||||
- `continuwuity.service` - Systemd service file for the server
|
|
||||||
- `RPM-GPG-KEY-continuwuity.asc` - GPG public key for verifying signed packages
|
|
||||||
|
|
||||||
RPM packages built by CI are signed with our GPG key (Ed25519, ID: `5E0FF73F411AAFCA`).
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Import the signing key
|
|
||||||
sudo rpm --import https://forgejo.ellis.link/continuwuation/continuwuity/raw/branch/main/fedora/RPM-GPG-KEY-continuwuity.asc
|
|
||||||
|
|
||||||
# Verify a downloaded package
|
|
||||||
rpm --checksig continuwuity-*.rpm
|
|
||||||
```
|
|
||||||
|
|
||||||
## Installation methods
|
|
||||||
|
|
||||||
**Stable releases** (recommended)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Add the repository and install
|
|
||||||
sudo dnf config-manager addrepo --from-repofile=https://forgejo.ellis.link/api/packages/continuwuation/rpm/stable/continuwuation.repo
|
|
||||||
sudo dnf install continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
**Development builds** from main branch
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Add the dev repository and install
|
|
||||||
sudo dnf config-manager addrepo --from-repofile=https://forgejo.ellis.link/api/packages/continuwuation/rpm/dev/continuwuation.repo
|
|
||||||
sudo dnf install continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
**Feature branch builds** (example: `tom/new-feature`)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Branch names are sanitized (slashes become hyphens, lowercase only)
|
|
||||||
sudo dnf config-manager addrepo --from-repofile=https://forgejo.ellis.link/api/packages/continuwuation/rpm/tom-new-feature/continuwuation.repo
|
|
||||||
sudo dnf install continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
**Direct installation** without adding repository
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Latest stable release
|
|
||||||
sudo dnf install https://forgejo.ellis.link/api/packages/continuwuation/rpm/stable/continuwuity
|
|
||||||
|
|
||||||
# Latest development build
|
|
||||||
sudo dnf install https://forgejo.ellis.link/api/packages/continuwuation/rpm/dev/continuwuity
|
|
||||||
|
|
||||||
# Specific feature branch
|
|
||||||
sudo dnf install https://forgejo.ellis.link/api/packages/continuwuation/rpm/branch-name/continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
**Manual repository configuration** (alternative method)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
cat << 'EOF' | sudo tee /etc/yum.repos.d/continuwuity.repo
|
|
||||||
[continuwuity]
|
|
||||||
name=Continuwuity - Matrix homeserver
|
|
||||||
baseurl=https://forgejo.ellis.link/api/packages/continuwuation/rpm/stable
|
|
||||||
enabled=1
|
|
||||||
gpgcheck=1
|
|
||||||
gpgkey=https://forgejo.ellis.link/continuwuation/continuwuity/raw/branch/main/fedora/RPM-GPG-KEY-continuwuity.asc
|
|
||||||
EOF
|
|
||||||
|
|
||||||
sudo dnf install continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
## Package management
|
|
||||||
|
|
||||||
**Automatic updates** with DNF Automatic
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Install and configure
|
|
||||||
sudo dnf install dnf-automatic
|
|
||||||
sudo nano /etc/dnf/automatic.conf # Set: apply_updates = yes
|
|
||||||
sudo systemctl enable --now dnf-automatic.timer
|
|
||||||
```
|
|
||||||
|
|
||||||
**Manual updates**
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Check for updates
|
|
||||||
sudo dnf check-update continuwuity
|
|
||||||
|
|
||||||
# Update to latest version
|
|
||||||
sudo dnf update continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
**Switching channels** (stable/dev/feature branches)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# List enabled repositories
|
|
||||||
dnf repolist | grep continuwuation
|
|
||||||
|
|
||||||
# Disable current repository
|
|
||||||
sudo dnf config-manager --set-disabled continuwuation-stable # or -dev, or branch name
|
|
||||||
|
|
||||||
# Enable desired repository
|
|
||||||
sudo dnf config-manager --set-enabled continuwuation-dev # or -stable, or branch name
|
|
||||||
|
|
||||||
# Update to the new channel's version
|
|
||||||
sudo dnf update continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
**Verifying installation**
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Check installed version
|
|
||||||
rpm -q continuwuity
|
|
||||||
|
|
||||||
# View package information
|
|
||||||
rpm -qi continuwuity
|
|
||||||
|
|
||||||
# List installed files
|
|
||||||
rpm -ql continuwuity
|
|
||||||
|
|
||||||
# Verify package integrity
|
|
||||||
rpm -V continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
## Service management and removal
|
|
||||||
|
|
||||||
**Systemd service commands**
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Start the service
|
|
||||||
sudo systemctl start conduwuit
|
|
||||||
|
|
||||||
# Enable on boot
|
|
||||||
sudo systemctl enable conduwuit
|
|
||||||
|
|
||||||
# Check status
|
|
||||||
sudo systemctl status conduwuit
|
|
||||||
|
|
||||||
# View logs
|
|
||||||
sudo journalctl -u conduwuit -f
|
|
||||||
```
|
|
||||||
|
|
||||||
**Uninstallation**
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Stop and disable the service
|
|
||||||
sudo systemctl stop conduwuit
|
|
||||||
sudo systemctl disable conduwuit
|
|
||||||
|
|
||||||
# Remove the package
|
|
||||||
sudo dnf remove continuwuity
|
|
||||||
|
|
||||||
# Remove the repository (optional)
|
|
||||||
sudo rm /etc/yum.repos.d/continuwuation-*.repo
|
|
||||||
```
|
|
||||||
|
|
||||||
## Troubleshooting
|
|
||||||
|
|
||||||
**GPG key errors**: Temporarily disable GPG checking
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo dnf --nogpgcheck install continuwuity
|
|
||||||
```
|
|
||||||
|
|
||||||
**Repository metadata issues**: Clear and rebuild cache
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo dnf clean all
|
|
||||||
sudo dnf makecache
|
|
||||||
```
|
|
||||||
|
|
||||||
**Finding specific versions**
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# List all available versions
|
|
||||||
dnf --showduplicates list continuwuity
|
|
||||||
|
|
||||||
# Install a specific version
|
|
||||||
sudo dnf install continuwuity-<version>
|
|
||||||
```
|
|
||||||
|
|
||||||
## Building locally
|
|
||||||
|
|
||||||
Build the RPM locally using rpkg:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Install dependencies
|
|
||||||
sudo dnf install rpkg rpm-build cargo-rpm-macros systemd-rpm-macros
|
|
||||||
|
|
||||||
# Clone the repository
|
|
||||||
git clone https://forgejo.ellis.link/continuwuation/continuwuity.git
|
|
||||||
cd continuwuity
|
|
||||||
|
|
||||||
# Build SRPM
|
|
||||||
rpkg srpm
|
|
||||||
|
|
||||||
# Build RPM
|
|
||||||
rpmbuild --rebuild *.src.rpm
|
|
||||||
```
|
|
||||||
@@ -44,7 +44,7 @@ If wanting to build using standard Rust toolchains, make sure you install:
|
|||||||
- (On linux) `pkg-config` on the compiling machine to allow finding `liburing`
|
- (On linux) `pkg-config` on the compiling machine to allow finding `liburing`
|
||||||
- A C++ compiler and (on linux) `libclang` for RocksDB
|
- A C++ compiler and (on linux) `libclang` for RocksDB
|
||||||
|
|
||||||
You can build Continuwuity using `cargo build --release`.
|
You can build Continuwuity using `cargo build --release --all-features`.
|
||||||
|
|
||||||
### Building with Nix
|
### Building with Nix
|
||||||
|
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ lock_b.with_lock(|data_b| {
|
|||||||
### Code Comments
|
### Code Comments
|
||||||
|
|
||||||
- Reference related documentation or parts of the specification
|
- Reference related documentation or parts of the specification
|
||||||
- When a task has multiple ways of being achieved, explain your reasoning for your decision
|
- When a task has multiple ways of being acheved, explain your reasoning for your decision
|
||||||
- Update comments when code changes
|
- Update comments when code changes
|
||||||
|
|
||||||
```rs
|
```rs
|
||||||
|
|||||||
Vendored
+2
-2
@@ -6,8 +6,8 @@
|
|||||||
"message": "Welcome to Continuwuity! Important announcements about the project will appear here."
|
"message": "Welcome to Continuwuity! Important announcements about the project will appear here."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 3,
|
"id": 2,
|
||||||
"message": "_taps microphone_ The Continuwuity 0.5.0-rc.7 release is now available, and it's better than ever! **177 commits**, **35 pull requests**, **11 contributors,** and a lot of new stuff!\n\nFor highlights, we've got:\n\n* 🕵️ Full Policy Server support to fight spam!\n* 🚀 Smarter room & space upgrades.\n* 🚫 User suspension tools for better moderation.\n* 🤖 reCaptcha support for safer open registration.\n* 🔍 Ability to disable read receipts & typing indicators.\n* ⚡ Sweeping performance improvements!\n\nGet the [full changelog and downloads on our Forgejo](https://forgejo.ellis.link/continuwuation/continuwuity/releases/tag/v0.5.0-rc.7) - and make sure you're in the [Announcements room](https://matrix.to/#/!releases:continuwuity.org/$hN9z6L2_dTAlPxFLAoXVfo_g8DyYXu4cpvWsSrWhmB0) to get stuff like this sooner."
|
"message": "🎉 Continuwuity v0.5.0-rc.6 is now available! This release includes improved knock-restricted room handling, automatic support contact configuration, and a new HTML landing page. Check [the release notes for full details](https://forgejo.ellis.link/continuwuation/continuwuity/releases/tag/v0.5.0-rc.6) and upgrade instructions."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-3
@@ -83,7 +83,7 @@ env DIRENV_DEVSHELL=all-features \
|
|||||||
--workspace \
|
--workspace \
|
||||||
--locked \
|
--locked \
|
||||||
--profile test \
|
--profile test \
|
||||||
--features full \
|
--all-features \
|
||||||
--no-deps \
|
--no-deps \
|
||||||
--document-private-items \
|
--document-private-items \
|
||||||
--color always
|
--color always
|
||||||
@@ -96,7 +96,7 @@ script = """
|
|||||||
direnv exec . \
|
direnv exec . \
|
||||||
cargo clippy \
|
cargo clippy \
|
||||||
--workspace \
|
--workspace \
|
||||||
--features full \
|
--all-features \
|
||||||
--locked \
|
--locked \
|
||||||
--profile test \
|
--profile test \
|
||||||
--color=always \
|
--color=always \
|
||||||
@@ -114,7 +114,7 @@ env DIRENV_DEVSHELL=all-features \
|
|||||||
--workspace \
|
--workspace \
|
||||||
--locked \
|
--locked \
|
||||||
--profile test \
|
--profile test \
|
||||||
--features full \
|
--all-features \
|
||||||
--color=always \
|
--color=always \
|
||||||
-- \
|
-- \
|
||||||
-D warnings
|
-D warnings
|
||||||
|
|||||||
Generated
+461
-52
@@ -1,28 +1,95 @@
|
|||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"advisory-db": {
|
"attic": {
|
||||||
"flake": false,
|
"inputs": {
|
||||||
|
"crane": "crane",
|
||||||
|
"flake-compat": "flake-compat",
|
||||||
|
"flake-parts": "flake-parts",
|
||||||
|
"nix-github-actions": "nix-github-actions",
|
||||||
|
"nixpkgs": "nixpkgs",
|
||||||
|
"nixpkgs-stable": "nixpkgs-stable"
|
||||||
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1761112158,
|
"lastModified": 1751403276,
|
||||||
"narHash": "sha256-RIXu/7eyKpQHjsPuAUODO81I4ni8f+WYSb7K4mTG6+0=",
|
"narHash": "sha256-V0EPQNsQko1a8OqIWc2lLviLnMpR1m08Ej00z5RVTfs=",
|
||||||
"owner": "rustsec",
|
"owner": "zhaofengli",
|
||||||
"repo": "advisory-db",
|
"repo": "attic",
|
||||||
"rev": "58f3aaec0e1776f4a900737be8cd7cb00972210d",
|
"rev": "896ad88fa57ad5dbcd267c0ac51f1b71ccfcb4dd",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "rustsec",
|
"owner": "zhaofengli",
|
||||||
"repo": "advisory-db",
|
"ref": "main",
|
||||||
|
"repo": "attic",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cachix": {
|
||||||
|
"inputs": {
|
||||||
|
"devenv": "devenv",
|
||||||
|
"flake-compat": "flake-compat_2",
|
||||||
|
"git-hooks": "git-hooks",
|
||||||
|
"nixpkgs": "nixpkgs_4"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1748883665,
|
||||||
|
"narHash": "sha256-R0W7uAg+BLoHjMRMQ8+oiSbTq8nkGz5RDpQ+ZfxxP3A=",
|
||||||
|
"owner": "cachix",
|
||||||
|
"repo": "cachix",
|
||||||
|
"rev": "f707778d902af4d62d8dd92c269f8e70de09acbe",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "cachix",
|
||||||
|
"ref": "master",
|
||||||
|
"repo": "cachix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cachix_2": {
|
||||||
|
"inputs": {
|
||||||
|
"devenv": [
|
||||||
|
"cachix",
|
||||||
|
"devenv"
|
||||||
|
],
|
||||||
|
"flake-compat": [
|
||||||
|
"cachix",
|
||||||
|
"devenv"
|
||||||
|
],
|
||||||
|
"git-hooks": [
|
||||||
|
"cachix",
|
||||||
|
"devenv"
|
||||||
|
],
|
||||||
|
"nixpkgs": "nixpkgs_2"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1744206633,
|
||||||
|
"narHash": "sha256-pb5aYkE8FOoa4n123slgHiOf1UbNSnKe5pEZC+xXD5g=",
|
||||||
|
"owner": "cachix",
|
||||||
|
"repo": "cachix",
|
||||||
|
"rev": "8a60090640b96f9df95d1ab99e5763a586be1404",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "cachix",
|
||||||
|
"ref": "latest",
|
||||||
|
"repo": "cachix",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"crane": {
|
"crane": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"attic",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1760924934,
|
"lastModified": 1722960479,
|
||||||
"narHash": "sha256-tuuqY5aU7cUkR71sO2TraVKK2boYrdW3gCSXUkF4i44=",
|
"narHash": "sha256-NhCkJJQhD5GUib8zN9JrmYGMwt4lCRp6ZVNzIiYCl0Y=",
|
||||||
"owner": "ipetkov",
|
"owner": "ipetkov",
|
||||||
"repo": "crane",
|
"repo": "crane",
|
||||||
"rev": "c6b4d5308293d0d04fcfeee92705017537cad02f",
|
"rev": "4c6c77920b8d44cd6660c1621dea6b3fc4b4c4f4",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -31,6 +98,53 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"crane_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1750266157,
|
||||||
|
"narHash": "sha256-tL42YoNg9y30u7zAqtoGDNdTyXTi8EALDeCB13FtbQA=",
|
||||||
|
"owner": "ipetkov",
|
||||||
|
"repo": "crane",
|
||||||
|
"rev": "e37c943371b73ed87faf33f7583860f81f1d5a48",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "ipetkov",
|
||||||
|
"ref": "master",
|
||||||
|
"repo": "crane",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"devenv": {
|
||||||
|
"inputs": {
|
||||||
|
"cachix": "cachix_2",
|
||||||
|
"flake-compat": [
|
||||||
|
"cachix",
|
||||||
|
"flake-compat"
|
||||||
|
],
|
||||||
|
"git-hooks": [
|
||||||
|
"cachix",
|
||||||
|
"git-hooks"
|
||||||
|
],
|
||||||
|
"nix": "nix",
|
||||||
|
"nixpkgs": [
|
||||||
|
"cachix",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1748273445,
|
||||||
|
"narHash": "sha256-5V0dzpNgQM0CHDsMzh+ludYeu1S+Y+IMjbaskSSdFh0=",
|
||||||
|
"owner": "cachix",
|
||||||
|
"repo": "devenv",
|
||||||
|
"rev": "668a50d8b7bdb19a0131f53c9f6c25c9071e1ffb",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "cachix",
|
||||||
|
"repo": "devenv",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"fenix": {
|
"fenix": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
@@ -39,20 +153,53 @@
|
|||||||
"rust-analyzer-src": "rust-analyzer-src"
|
"rust-analyzer-src": "rust-analyzer-src"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1761115517,
|
"lastModified": 1751525020,
|
||||||
"narHash": "sha256-Fev/ag/c3Fp3JBwHfup3lpA5FlNXfkoshnQ7dssBgJ0=",
|
"narHash": "sha256-oDO6lCYS5Bf4jUITChj9XV7k3TP38DE0Ckz5n5ORCME=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "fenix",
|
"repo": "fenix",
|
||||||
"rev": "320433651636186ea32b387cff05d6bbfa30cea7",
|
"rev": "a1a5f92f47787e7df9f30e5e5ac13e679215aa1e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
|
"ref": "main",
|
||||||
"repo": "fenix",
|
"repo": "fenix",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flake-compat": {
|
"flake-compat": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1696426674,
|
||||||
|
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
||||||
|
"owner": "edolstra",
|
||||||
|
"repo": "flake-compat",
|
||||||
|
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "edolstra",
|
||||||
|
"repo": "flake-compat",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-compat_2": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1747046372,
|
||||||
|
"narHash": "sha256-CIVLLkVgvHYbgI2UpXvIIBJ12HWgX+fjA8Xf8PUmqCY=",
|
||||||
|
"owner": "edolstra",
|
||||||
|
"repo": "flake-compat",
|
||||||
|
"rev": "9100a0f413b0c601e0533d1d94ffd501ce2e7885",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "edolstra",
|
||||||
|
"repo": "flake-compat",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-compat_3": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1747046372,
|
"lastModified": 1747046372,
|
||||||
@@ -71,14 +218,17 @@
|
|||||||
},
|
},
|
||||||
"flake-parts": {
|
"flake-parts": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs-lib": "nixpkgs-lib"
|
"nixpkgs-lib": [
|
||||||
|
"attic",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1760948891,
|
"lastModified": 1722555600,
|
||||||
"narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
|
"narHash": "sha256-XOQkdLafnb/p9ij77byFQjDf5m5QYl9b2REiVClC+x4=",
|
||||||
"owner": "hercules-ci",
|
"owner": "hercules-ci",
|
||||||
"repo": "flake-parts",
|
"repo": "flake-parts",
|
||||||
"rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
|
"rev": "8471fe90ad337a8074e957b69ca4d0089218391d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -87,13 +237,225 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"flake-parts_2": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs-lib": [
|
||||||
|
"cachix",
|
||||||
|
"devenv",
|
||||||
|
"nix",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1712014858,
|
||||||
|
"narHash": "sha256-sB4SWl2lX95bExY2gMFG5HIzvva5AVMJd4Igm+GpZNw=",
|
||||||
|
"owner": "hercules-ci",
|
||||||
|
"repo": "flake-parts",
|
||||||
|
"rev": "9126214d0a59633752a136528f5f3b9aa8565b7d",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "hercules-ci",
|
||||||
|
"repo": "flake-parts",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"flake-utils": {
|
||||||
|
"inputs": {
|
||||||
|
"systems": "systems"
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1731533236,
|
||||||
|
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"ref": "main",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"git-hooks": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-compat": [
|
||||||
|
"cachix",
|
||||||
|
"flake-compat"
|
||||||
|
],
|
||||||
|
"gitignore": "gitignore",
|
||||||
|
"nixpkgs": [
|
||||||
|
"cachix",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1747372754,
|
||||||
|
"narHash": "sha256-2Y53NGIX2vxfie1rOW0Qb86vjRZ7ngizoo+bnXU9D9k=",
|
||||||
|
"owner": "cachix",
|
||||||
|
"repo": "git-hooks.nix",
|
||||||
|
"rev": "80479b6ec16fefd9c1db3ea13aeb038c60530f46",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "cachix",
|
||||||
|
"repo": "git-hooks.nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"gitignore": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"cachix",
|
||||||
|
"git-hooks",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1709087332,
|
||||||
|
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
||||||
|
"owner": "hercules-ci",
|
||||||
|
"repo": "gitignore.nix",
|
||||||
|
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "hercules-ci",
|
||||||
|
"repo": "gitignore.nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libgit2": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1697646580,
|
||||||
|
"narHash": "sha256-oX4Z3S9WtJlwvj0uH9HlYcWv+x1hqp8mhXl7HsLu2f0=",
|
||||||
|
"owner": "libgit2",
|
||||||
|
"repo": "libgit2",
|
||||||
|
"rev": "45fd9ed7ae1a9b74b957ef4f337bc3c8b3df01b5",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "libgit2",
|
||||||
|
"repo": "libgit2",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nix": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-compat": [
|
||||||
|
"cachix",
|
||||||
|
"devenv"
|
||||||
|
],
|
||||||
|
"flake-parts": "flake-parts_2",
|
||||||
|
"libgit2": "libgit2",
|
||||||
|
"nixpkgs": "nixpkgs_3",
|
||||||
|
"nixpkgs-23-11": [
|
||||||
|
"cachix",
|
||||||
|
"devenv"
|
||||||
|
],
|
||||||
|
"nixpkgs-regression": [
|
||||||
|
"cachix",
|
||||||
|
"devenv"
|
||||||
|
],
|
||||||
|
"pre-commit-hooks": [
|
||||||
|
"cachix",
|
||||||
|
"devenv"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1745930071,
|
||||||
|
"narHash": "sha256-bYyjarS3qSNqxfgc89IoVz8cAFDkF9yPE63EJr+h50s=",
|
||||||
|
"owner": "domenkozar",
|
||||||
|
"repo": "nix",
|
||||||
|
"rev": "b455edf3505f1bf0172b39a735caef94687d0d9c",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "domenkozar",
|
||||||
|
"ref": "devenv-2.24",
|
||||||
|
"repo": "nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nix-filter": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1731533336,
|
||||||
|
"narHash": "sha256-oRam5PS1vcrr5UPgALW0eo1m/5/pls27Z/pabHNy2Ms=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "nix-filter",
|
||||||
|
"rev": "f7653272fd234696ae94229839a99b73c9ab7de0",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"ref": "main",
|
||||||
|
"repo": "nix-filter",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nix-github-actions": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"attic",
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1729742964,
|
||||||
|
"narHash": "sha256-B4mzTcQ0FZHdpeWcpDYPERtyjJd/NIuaQ9+BV1h+MpA=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-github-actions",
|
||||||
|
"rev": "e04df33f62cdcf93d73e9a04142464753a16db67",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-github-actions",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1760878510,
|
"lastModified": 1726042813,
|
||||||
"narHash": "sha256-K5Osef2qexezUfs0alLvZ7nQFTGS9DL2oTVsIXsqLgs=",
|
"narHash": "sha256-LnNKCCxnwgF+575y0pxUdlGZBO/ru1CtGHIqQVfvjlA=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5e2a59a5b1a82f89f2c7e598302a9cacebb72a67",
|
"rev": "159be5db480d1df880a0135ca0bfed84c2f88353",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixpkgs-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs-stable": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1724316499,
|
||||||
|
"narHash": "sha256-Qb9MhKBUTCfWg/wqqaxt89Xfi6qTD3XpTzQ9eXi3JmE=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "797f7dc49e0bc7fab4b57c021cdf68f595e47841",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-24.05",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs_2": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1733212471,
|
||||||
|
"narHash": "sha256-M1+uCoV5igihRfcUKrr1riygbe73/dzNnzPsmaLCmpo=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "55d15ad12a74eb7d4646254e13638ad0c4128776",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -103,40 +465,92 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs-lib": {
|
"nixpkgs_3": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1754788789,
|
"lastModified": 1717432640,
|
||||||
"narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=",
|
"narHash": "sha256-+f9c4/ZX5MWDOuB1rKoWj+lBNm0z0rs4CK47HBLxy1o=",
|
||||||
"owner": "nix-community",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs.lib",
|
"repo": "nixpkgs",
|
||||||
"rev": "a73b9c743612e4244d865a2fdee11865283c04e6",
|
"rev": "88269ab3044128b7c2f4c7d68448b2fb50456870",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nix-community",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs.lib",
|
"ref": "release-24.05",
|
||||||
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nixpkgs_4": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1748190013,
|
||||||
|
"narHash": "sha256-R5HJFflOfsP5FBtk+zE8FpL8uqE7n62jqOsADvVshhE=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "62b852f6c6742134ade1abdd2a21685fd617a291",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nixpkgs_5": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1751498133,
|
||||||
|
"narHash": "sha256-QWJ+NQbMU+NcU2xiyo7SNox1fAuwksGlQhpzBl76g1I=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "d55716bb59b91ae9d1ced4b1ccdea7a442ecbfdb",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixpkgs-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rocksdb": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1741308171,
|
||||||
|
"narHash": "sha256-YdBvdQ75UJg5ffwNjxizpviCVwVDJnBkM8ZtGIduMgY=",
|
||||||
|
"ref": "v9.11.1",
|
||||||
|
"rev": "3ce04794bcfbbb0d2e6f81ae35fc4acf688b6986",
|
||||||
|
"revCount": 13177,
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://forgejo.ellis.link/continuwuation/rocksdb"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"ref": "v9.11.1",
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://forgejo.ellis.link/continuwuation/rocksdb"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"advisory-db": "advisory-db",
|
"attic": "attic",
|
||||||
"crane": "crane",
|
"cachix": "cachix",
|
||||||
|
"crane": "crane_2",
|
||||||
"fenix": "fenix",
|
"fenix": "fenix",
|
||||||
"flake-compat": "flake-compat",
|
"flake-compat": "flake-compat_3",
|
||||||
"flake-parts": "flake-parts",
|
"flake-utils": "flake-utils",
|
||||||
"nixpkgs": "nixpkgs",
|
"nix-filter": "nix-filter",
|
||||||
"treefmt-nix": "treefmt-nix"
|
"nixpkgs": "nixpkgs_5",
|
||||||
|
"rocksdb": "rocksdb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rust-analyzer-src": {
|
"rust-analyzer-src": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1761077270,
|
"lastModified": 1751433876,
|
||||||
"narHash": "sha256-O1uTuvI/rUlubJ8AXKyzh1WSWV3qCZX0huTFUvWLN4E=",
|
"narHash": "sha256-IsdwOcvLLDDlkFNwhdD5BZy20okIQL01+UQ7Kxbqh8s=",
|
||||||
"owner": "rust-lang",
|
"owner": "rust-lang",
|
||||||
"repo": "rust-analyzer",
|
"repo": "rust-analyzer",
|
||||||
"rev": "39990a923c8bca38f5bd29dc4c96e20ee7808d5d",
|
"rev": "11d45c881389dae90b0da5a94cde52c79d0fc7ef",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -146,23 +560,18 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"treefmt-nix": {
|
"systems": {
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1760945191,
|
"lastModified": 1681028828,
|
||||||
"narHash": "sha256-ZRVs8UqikBa4Ki3X4KCnMBtBW0ux1DaT35tgsnB1jM4=",
|
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||||
"owner": "numtide",
|
"owner": "nix-systems",
|
||||||
"repo": "treefmt-nix",
|
"repo": "default",
|
||||||
"rev": "f56b1934f5f8fcab8deb5d38d42fd692632b47c2",
|
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "numtide",
|
"owner": "nix-systems",
|
||||||
"repo": "treefmt-nix",
|
"repo": "default",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,46 +1,345 @@
|
|||||||
{
|
{
|
||||||
description = "A nix flake for the continuwuity project";
|
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# basics
|
attic.url = "github:zhaofengli/attic?ref=main";
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
cachix.url = "github:cachix/cachix?ref=master";
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
crane = {
|
||||||
|
url = "github:ipetkov/crane?ref=master";
|
||||||
# for rust via nix
|
};
|
||||||
crane.url = "github:ipetkov/crane";
|
|
||||||
fenix = {
|
fenix = {
|
||||||
url = "github:nix-community/fenix";
|
url = "github:nix-community/fenix?ref=main";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
# for vuln checks
|
|
||||||
advisory-db = {
|
|
||||||
url = "github:rustsec/advisory-db";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
treefmt-nix = {
|
|
||||||
url = "github:numtide/treefmt-nix";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
# for default.nix
|
|
||||||
flake-compat = {
|
flake-compat = {
|
||||||
url = "github:edolstra/flake-compat?ref=master";
|
url = "github:edolstra/flake-compat?ref=master";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
flake-utils.url = "github:numtide/flake-utils?ref=main";
|
||||||
|
nix-filter.url = "github:numtide/nix-filter?ref=main";
|
||||||
|
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixpkgs-unstable";
|
||||||
|
rocksdb = {
|
||||||
|
url = "git+https://forgejo.ellis.link/continuwuation/rocksdb?ref=v9.11.1";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
inputs@{ flake-parts, ... }:
|
inputs:
|
||||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
inputs.flake-utils.lib.eachDefaultSystem (
|
||||||
imports = [ ./nix ];
|
system:
|
||||||
systems = [
|
let
|
||||||
# good support
|
pkgsHost = import inputs.nixpkgs {
|
||||||
"x86_64-linux"
|
inherit system;
|
||||||
# support untested but theoretically there
|
};
|
||||||
"aarch64-linux"
|
|
||||||
];
|
# The Rust toolchain to use
|
||||||
};
|
toolchain = inputs.fenix.packages.${system}.fromToolchainFile {
|
||||||
|
file = ./rust-toolchain.toml;
|
||||||
|
|
||||||
|
# See also `rust-toolchain.toml`
|
||||||
|
sha256 = "sha256-KUm16pHj+cRedf8vxs/Hd2YWxpOrWZ7UOrwhILdSJBU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
mkScope =
|
||||||
|
pkgs:
|
||||||
|
pkgs.lib.makeScope pkgs.newScope (self: {
|
||||||
|
inherit pkgs inputs;
|
||||||
|
craneLib = (inputs.crane.mkLib pkgs).overrideToolchain (_: toolchain);
|
||||||
|
main = self.callPackage ./nix/pkgs/main { };
|
||||||
|
liburing = pkgs.liburing.overrideAttrs {
|
||||||
|
# Tests weren't building
|
||||||
|
outputs = [
|
||||||
|
"out"
|
||||||
|
"dev"
|
||||||
|
"man"
|
||||||
|
];
|
||||||
|
buildFlags = [ "library" ];
|
||||||
|
};
|
||||||
|
rocksdb =
|
||||||
|
(pkgs.rocksdb_9_10.override {
|
||||||
|
# Override the liburing input for the build with our own so
|
||||||
|
# we have it built with the library flag
|
||||||
|
inherit (self) liburing;
|
||||||
|
}).overrideAttrs
|
||||||
|
(old: {
|
||||||
|
src = inputs.rocksdb;
|
||||||
|
version = "v9.11.1";
|
||||||
|
cmakeFlags =
|
||||||
|
pkgs.lib.subtractLists [
|
||||||
|
# No real reason to have snappy or zlib, no one uses this
|
||||||
|
"-DWITH_SNAPPY=1"
|
||||||
|
"-DZLIB=1"
|
||||||
|
"-DWITH_ZLIB=1"
|
||||||
|
# We don't need to use ldb or sst_dump (core_tools)
|
||||||
|
"-DWITH_CORE_TOOLS=1"
|
||||||
|
# We don't need to build rocksdb tests
|
||||||
|
"-DWITH_TESTS=1"
|
||||||
|
# We use rust-rocksdb via C interface and don't need C++ RTTI
|
||||||
|
"-DUSE_RTTI=1"
|
||||||
|
# This doesn't exist in RocksDB, and USE_SSE is deprecated for
|
||||||
|
# PORTABLE=$(march)
|
||||||
|
"-DFORCE_SSE42=1"
|
||||||
|
# PORTABLE will get set in main/default.nix
|
||||||
|
"-DPORTABLE=1"
|
||||||
|
] old.cmakeFlags
|
||||||
|
++ [
|
||||||
|
# No real reason to have snappy, no one uses this
|
||||||
|
"-DWITH_SNAPPY=0"
|
||||||
|
"-DZLIB=0"
|
||||||
|
"-DWITH_ZLIB=0"
|
||||||
|
# We don't need to use ldb or sst_dump (core_tools)
|
||||||
|
"-DWITH_CORE_TOOLS=0"
|
||||||
|
# We don't need trace tools
|
||||||
|
"-DWITH_TRACE_TOOLS=0"
|
||||||
|
# We don't need to build rocksdb tests
|
||||||
|
"-DWITH_TESTS=0"
|
||||||
|
# We use rust-rocksdb via C interface and don't need C++ RTTI
|
||||||
|
"-DUSE_RTTI=0"
|
||||||
|
];
|
||||||
|
|
||||||
|
# outputs has "tools" which we don't need or use
|
||||||
|
outputs = [ "out" ];
|
||||||
|
|
||||||
|
# preInstall hooks has stuff for messing with ldb/sst_dump which we don't need or use
|
||||||
|
preInstall = "";
|
||||||
|
|
||||||
|
# We have this already at https://forgejo.ellis.link/continuwuation/rocksdb/commit/a935c0273e1ba44eacf88ce3685a9b9831486155
|
||||||
|
# Unsetting this so we don't have to revert it and make this nix exclusive
|
||||||
|
patches = [ ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Fix gcc-13 build failures due to missing <cstdint> and
|
||||||
|
# <system_error> includes, fixed upstream since 8.x
|
||||||
|
sed -e '1i #include <cstdint>' -i db/compaction/compaction_iteration_stats.h
|
||||||
|
sed -e '1i #include <cstdint>' -i table/block_based/data_block_hash_index.h
|
||||||
|
sed -e '1i #include <cstdint>' -i util/string_util.h
|
||||||
|
sed -e '1i #include <cstdint>' -i include/rocksdb/utilities/checkpoint.h
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
scopeHost = mkScope pkgsHost;
|
||||||
|
mkCrossScope =
|
||||||
|
crossSystem:
|
||||||
|
let
|
||||||
|
pkgsCrossStatic =
|
||||||
|
(import inputs.nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
crossSystem = {
|
||||||
|
config = crossSystem;
|
||||||
|
};
|
||||||
|
}).pkgsStatic;
|
||||||
|
in
|
||||||
|
mkScope pkgsCrossStatic;
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
packages =
|
||||||
|
{
|
||||||
|
default = scopeHost.main.override {
|
||||||
|
disable_features = [
|
||||||
|
# Don't include experimental features
|
||||||
|
"experimental"
|
||||||
|
# jemalloc profiling/stats features are expensive and shouldn't
|
||||||
|
# be expected on non-debug builds.
|
||||||
|
"jemalloc_prof"
|
||||||
|
"jemalloc_stats"
|
||||||
|
# This is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
default-debug = scopeHost.main.override {
|
||||||
|
profile = "dev";
|
||||||
|
# Debug build users expect full logs
|
||||||
|
disable_release_max_log_level = true;
|
||||||
|
disable_features = [
|
||||||
|
# Don't include experimental features
|
||||||
|
"experimental"
|
||||||
|
# This is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
# Just a test profile used for things like CI and complement
|
||||||
|
default-test = scopeHost.main.override {
|
||||||
|
profile = "test";
|
||||||
|
disable_release_max_log_level = true;
|
||||||
|
disable_features = [
|
||||||
|
# Don't include experimental features
|
||||||
|
"experimental"
|
||||||
|
# this is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
all-features = scopeHost.main.override {
|
||||||
|
all_features = true;
|
||||||
|
disable_features = [
|
||||||
|
# Don't include experimental features
|
||||||
|
"experimental"
|
||||||
|
# jemalloc profiling/stats features are expensive and shouldn't
|
||||||
|
# be expected on non-debug builds.
|
||||||
|
"jemalloc_prof"
|
||||||
|
"jemalloc_stats"
|
||||||
|
# This is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
all-features-debug = scopeHost.main.override {
|
||||||
|
profile = "dev";
|
||||||
|
all_features = true;
|
||||||
|
# Debug build users expect full logs
|
||||||
|
disable_release_max_log_level = true;
|
||||||
|
disable_features = [
|
||||||
|
# Don't include experimental features
|
||||||
|
"experimental"
|
||||||
|
# This is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
hmalloc = scopeHost.main.override { features = [ "hardened_malloc" ]; };
|
||||||
|
}
|
||||||
|
// builtins.listToAttrs (
|
||||||
|
builtins.concatLists (
|
||||||
|
builtins.map
|
||||||
|
(
|
||||||
|
crossSystem:
|
||||||
|
let
|
||||||
|
binaryName = "static-${crossSystem}";
|
||||||
|
scopeCrossStatic = mkCrossScope crossSystem;
|
||||||
|
in
|
||||||
|
[
|
||||||
|
# An output for a statically-linked binary
|
||||||
|
{
|
||||||
|
name = binaryName;
|
||||||
|
value = scopeCrossStatic.main;
|
||||||
|
}
|
||||||
|
|
||||||
|
# An output for a statically-linked binary with x86_64 haswell
|
||||||
|
# target optimisations
|
||||||
|
{
|
||||||
|
name = "${binaryName}-x86_64-haswell-optimised";
|
||||||
|
value = scopeCrossStatic.main.override {
|
||||||
|
x86_64_haswell_target_optimised =
|
||||||
|
if (crossSystem == "x86_64-linux-gnu" || crossSystem == "x86_64-linux-musl") then true else false;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
# An output for a statically-linked unstripped debug ("dev") binary
|
||||||
|
{
|
||||||
|
name = "${binaryName}-debug";
|
||||||
|
value = scopeCrossStatic.main.override {
|
||||||
|
profile = "dev";
|
||||||
|
# debug build users expect full logs
|
||||||
|
disable_release_max_log_level = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
# An output for a statically-linked unstripped debug binary with the
|
||||||
|
# "test" profile (for CI usage only)
|
||||||
|
{
|
||||||
|
name = "${binaryName}-test";
|
||||||
|
value = scopeCrossStatic.main.override {
|
||||||
|
profile = "test";
|
||||||
|
disable_release_max_log_level = true;
|
||||||
|
disable_features = [
|
||||||
|
# dont include experimental features
|
||||||
|
"experimental"
|
||||||
|
# this is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
# An output for a statically-linked binary with `--all-features`
|
||||||
|
{
|
||||||
|
name = "${binaryName}-all-features";
|
||||||
|
value = scopeCrossStatic.main.override {
|
||||||
|
all_features = true;
|
||||||
|
disable_features = [
|
||||||
|
# dont include experimental features
|
||||||
|
"experimental"
|
||||||
|
# jemalloc profiling/stats features are expensive and shouldn't
|
||||||
|
# be expected on non-debug builds.
|
||||||
|
"jemalloc_prof"
|
||||||
|
"jemalloc_stats"
|
||||||
|
# this is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
# An output for a statically-linked binary with `--all-features` and with x86_64 haswell
|
||||||
|
# target optimisations
|
||||||
|
{
|
||||||
|
name = "${binaryName}-all-features-x86_64-haswell-optimised";
|
||||||
|
value = scopeCrossStatic.main.override {
|
||||||
|
all_features = true;
|
||||||
|
disable_features = [
|
||||||
|
# dont include experimental features
|
||||||
|
"experimental"
|
||||||
|
# jemalloc profiling/stats features are expensive and shouldn't
|
||||||
|
# be expected on non-debug builds.
|
||||||
|
"jemalloc_prof"
|
||||||
|
"jemalloc_stats"
|
||||||
|
# this is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
x86_64_haswell_target_optimised =
|
||||||
|
if (crossSystem == "x86_64-linux-gnu" || crossSystem == "x86_64-linux-musl") then true else false;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
# An output for a statically-linked unstripped debug ("dev") binary with `--all-features`
|
||||||
|
{
|
||||||
|
name = "${binaryName}-all-features-debug";
|
||||||
|
value = scopeCrossStatic.main.override {
|
||||||
|
profile = "dev";
|
||||||
|
all_features = true;
|
||||||
|
# debug build users expect full logs
|
||||||
|
disable_release_max_log_level = true;
|
||||||
|
disable_features = [
|
||||||
|
# dont include experimental features
|
||||||
|
"experimental"
|
||||||
|
# this is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
# An output for a statically-linked binary with hardened_malloc
|
||||||
|
{
|
||||||
|
name = "${binaryName}-hmalloc";
|
||||||
|
value = scopeCrossStatic.main.override {
|
||||||
|
features = [ "hardened_malloc" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
]
|
||||||
|
)
|
||||||
|
[
|
||||||
|
#"x86_64-apple-darwin"
|
||||||
|
#"aarch64-apple-darwin"
|
||||||
|
"x86_64-linux-gnu"
|
||||||
|
"x86_64-linux-musl"
|
||||||
|
"aarch64-linux-musl"
|
||||||
|
]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,108 +0,0 @@
|
|||||||
{ inputs, ... }:
|
|
||||||
{
|
|
||||||
perSystem =
|
|
||||||
{
|
|
||||||
self',
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
uwulib = inputs.self.uwulib.init pkgs;
|
|
||||||
|
|
||||||
rocksdbAllFeatures = self'.packages.rocksdb.override {
|
|
||||||
enableJemalloc = true;
|
|
||||||
enableLiburing = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
commonAttrs = (uwulib.build.commonAttrs { }) // {
|
|
||||||
buildInputs = [
|
|
||||||
pkgs.liburing
|
|
||||||
pkgs.rust-jemalloc-sys-unprefixed
|
|
||||||
rocksdbAllFeatures
|
|
||||||
];
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkgs.pkg-config
|
|
||||||
# bindgen needs the build platform's libclang. Apparently due to "splicing
|
|
||||||
# weirdness", pkgs.rustPlatform.bindgenHook on its own doesn't quite do the
|
|
||||||
# right thing here.
|
|
||||||
pkgs.rustPlatform.bindgenHook
|
|
||||||
];
|
|
||||||
env = {
|
|
||||||
LIBCLANG_PATH = lib.makeLibraryPath [ pkgs.llvmPackages.libclang.lib ];
|
|
||||||
LD_LIBRARY_PATH = lib.makeLibraryPath [
|
|
||||||
pkgs.liburing
|
|
||||||
pkgs.rust-jemalloc-sys-unprefixed
|
|
||||||
rocksdbAllFeatures
|
|
||||||
];
|
|
||||||
}
|
|
||||||
// uwulib.environment.buildPackageEnv
|
|
||||||
// {
|
|
||||||
ROCKSDB_INCLUDE_DIR = "${rocksdbAllFeatures}/include";
|
|
||||||
ROCKSDB_LIB_DIR = "${rocksdbAllFeatures}/lib";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
cargoArtifacts = self'.packages.continuwuity-all-features-deps;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
# taken from
|
|
||||||
#
|
|
||||||
# https://crane.dev/examples/quick-start.html
|
|
||||||
checks = {
|
|
||||||
continuwuity-all-features-build = self'.packages.continuwuity-all-features-bin;
|
|
||||||
|
|
||||||
continuwuity-all-features-clippy = uwulib.build.craneLibForChecks.cargoClippy (
|
|
||||||
commonAttrs
|
|
||||||
// {
|
|
||||||
inherit cargoArtifacts;
|
|
||||||
cargoClippyExtraArgs = "-- --deny warnings";
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
continuwuity-all-features-docs = uwulib.build.craneLibForChecks.cargoDoc (
|
|
||||||
commonAttrs
|
|
||||||
// {
|
|
||||||
inherit cargoArtifacts;
|
|
||||||
# This can be commented out or tweaked as necessary, e.g. set to
|
|
||||||
# `--deny rustdoc::broken-intra-doc-links` to only enforce that lint
|
|
||||||
env.RUSTDOCFLAGS = "--deny warnings";
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
# Check formatting
|
|
||||||
continuwuity-all-features-fmt = uwulib.build.craneLibForChecks.cargoFmt {
|
|
||||||
src = uwulib.build.src;
|
|
||||||
};
|
|
||||||
|
|
||||||
continuwuity-all-features-toml-fmt = uwulib.build.craneLibForChecks.taploFmt {
|
|
||||||
src = pkgs.lib.sources.sourceFilesBySuffices uwulib.build.src [ ".toml" ];
|
|
||||||
# taplo arguments can be further customized below as needed
|
|
||||||
taploExtraArgs = "--config ${inputs.self}/taplo.toml";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Audit dependencies
|
|
||||||
continuwuity-all-features-audit = uwulib.build.craneLibForChecks.cargoAudit {
|
|
||||||
inherit (inputs) advisory-db;
|
|
||||||
src = uwulib.build.src;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Audit licenses
|
|
||||||
continuwuity-all-features-deny = uwulib.build.craneLibForChecks.cargoDeny {
|
|
||||||
src = uwulib.build.src;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Run tests with cargo-nextest
|
|
||||||
# Consider setting `doCheck = false` on `continuwuity-all-features` if you do not want
|
|
||||||
# the tests to run twice
|
|
||||||
continuwuity-all-features-nextest = uwulib.build.craneLibForChecks.cargoNextest (
|
|
||||||
commonAttrs
|
|
||||||
// {
|
|
||||||
inherit cargoArtifacts;
|
|
||||||
partitions = 1;
|
|
||||||
partitionType = "count";
|
|
||||||
cargoNextestPartitionsExtraArgs = "--no-tests=pass";
|
|
||||||
}
|
|
||||||
);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
imports = [
|
|
||||||
./checks
|
|
||||||
./packages
|
|
||||||
./shells
|
|
||||||
./tests
|
|
||||||
|
|
||||||
./hydra.nix
|
|
||||||
./fmt.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
-37
@@ -1,37 +0,0 @@
|
|||||||
{ inputs, ... }:
|
|
||||||
{
|
|
||||||
# load the flake module from upstream
|
|
||||||
imports = [ inputs.treefmt-nix.flakeModule ];
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ self', lib, ... }:
|
|
||||||
{
|
|
||||||
treefmt = {
|
|
||||||
# repo root as project root
|
|
||||||
projectRoot = inputs.self;
|
|
||||||
|
|
||||||
# the formatters
|
|
||||||
programs = {
|
|
||||||
nixfmt.enable = true;
|
|
||||||
typos = {
|
|
||||||
enable = true;
|
|
||||||
configFile = "${inputs.self}/.typos.toml";
|
|
||||||
};
|
|
||||||
taplo = {
|
|
||||||
enable = true;
|
|
||||||
settings = lib.importTOML "${inputs.self}/taplo.toml";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
settings.formatter.rustfmt = {
|
|
||||||
command = "${lib.getExe' self'.packages.dev-toolchain "rustfmt"}";
|
|
||||||
includes = [ "**/*.rs" ];
|
|
||||||
options = [
|
|
||||||
"--unstable-features"
|
|
||||||
"--edition=2024"
|
|
||||||
"--config-path=${inputs.self}/rustfmt.toml"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{ inputs, ... }:
|
|
||||||
let
|
|
||||||
lib = inputs.nixpkgs.lib;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
flake.hydraJobs.packages = builtins.mapAttrs (
|
|
||||||
_name: lib.hydraJob
|
|
||||||
) inputs.self.packages.x86_64-linux;
|
|
||||||
}
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
{ inputs, ... }:
|
|
||||||
{
|
|
||||||
perSystem =
|
|
||||||
{
|
|
||||||
self',
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
uwulib = inputs.self.uwulib.init pkgs;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
packages =
|
|
||||||
lib.pipe
|
|
||||||
[
|
|
||||||
# this is the default variant
|
|
||||||
{
|
|
||||||
variantName = "default";
|
|
||||||
commonAttrsArgs.profile = "release";
|
|
||||||
rocksdb = self'.packages.rocksdb;
|
|
||||||
features = { };
|
|
||||||
}
|
|
||||||
# this is the variant with all features enabled (liburing + jemalloc)
|
|
||||||
{
|
|
||||||
variantName = "all-features";
|
|
||||||
commonAttrsArgs.profile = "release";
|
|
||||||
rocksdb = self'.packages.rocksdb.override {
|
|
||||||
enableJemalloc = true;
|
|
||||||
enableLiburing = true;
|
|
||||||
};
|
|
||||||
features = {
|
|
||||||
enabledFeatures = "all";
|
|
||||||
disabledFeatures = uwulib.features.defaultDisabledFeatures ++ [ "bindgen-static" ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
]
|
|
||||||
[
|
|
||||||
(builtins.map (cfg: rec {
|
|
||||||
deps = {
|
|
||||||
name = "continuwuity-${cfg.variantName}-deps";
|
|
||||||
value = uwulib.build.buildDeps {
|
|
||||||
features = uwulib.features.calcFeatures cfg.features;
|
|
||||||
inherit (cfg) commonAttrsArgs rocksdb;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
bin = {
|
|
||||||
name = "continuwuity-${cfg.variantName}-bin";
|
|
||||||
value = uwulib.build.buildPackage {
|
|
||||||
deps = self'.packages.${deps.name};
|
|
||||||
features = uwulib.features.calcFeatures cfg.features;
|
|
||||||
inherit (cfg) commonAttrsArgs rocksdb;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}))
|
|
||||||
(builtins.concatMap builtins.attrValues)
|
|
||||||
builtins.listToAttrs
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
imports = [
|
|
||||||
./continuwuity
|
|
||||||
./rocksdb
|
|
||||||
./rust.nix
|
|
||||||
./uwulib
|
|
||||||
];
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ self', ... }:
|
|
||||||
{
|
|
||||||
packages.default = self'.packages.continuwuity-default-bin;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
perSystem =
|
|
||||||
{
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
packages = {
|
|
||||||
rocksdb = pkgs.callPackage ./package.nix { };
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
stdenv,
|
|
||||||
|
|
||||||
rocksdb,
|
|
||||||
liburing,
|
|
||||||
rust-jemalloc-sys-unprefixed,
|
|
||||||
|
|
||||||
enableJemalloc ? false,
|
|
||||||
enableLiburing ? false,
|
|
||||||
|
|
||||||
fetchFromGitea,
|
|
||||||
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
notDarwin = !stdenv.hostPlatform.isDarwin;
|
|
||||||
in
|
|
||||||
(rocksdb.override {
|
|
||||||
# Override the liburing input for the build with our own so
|
|
||||||
# we have it built with the library flag
|
|
||||||
inherit liburing;
|
|
||||||
jemalloc = rust-jemalloc-sys-unprefixed;
|
|
||||||
|
|
||||||
# rocksdb fails to build with prefixed jemalloc, which is required on
|
|
||||||
# darwin due to [1]. In this case, fall back to building rocksdb with
|
|
||||||
# libc malloc. This should not cause conflicts, because all of the
|
|
||||||
# jemalloc symbols are prefixed.
|
|
||||||
#
|
|
||||||
# [1]: https://github.com/tikv/jemallocator/blob/ab0676d77e81268cd09b059260c75b38dbef2d51/jemalloc-sys/src/env.rs#L17
|
|
||||||
enableJemalloc = enableJemalloc && notDarwin;
|
|
||||||
|
|
||||||
# for some reason enableLiburing in nixpkgs rocksdb is default true
|
|
||||||
# which breaks Darwin entirely
|
|
||||||
enableLiburing = enableLiburing && notDarwin;
|
|
||||||
}).overrideAttrs
|
|
||||||
(old: {
|
|
||||||
src = fetchFromGitea {
|
|
||||||
domain = "forgejo.ellis.link";
|
|
||||||
owner = "continuwuation";
|
|
||||||
repo = "rocksdb";
|
|
||||||
rev = "10.5.fb";
|
|
||||||
sha256 = "sha256-X4ApGLkHF9ceBtBg77dimEpu720I79ffLoyPa8JMHaU=";
|
|
||||||
};
|
|
||||||
version = "10.5.fb";
|
|
||||||
cmakeFlags =
|
|
||||||
lib.subtractLists (builtins.map (flag: lib.cmakeBool flag true) [
|
|
||||||
# No real reason to have snappy or zlib, no one uses this
|
|
||||||
"WITH_SNAPPY"
|
|
||||||
"ZLIB"
|
|
||||||
"WITH_ZLIB"
|
|
||||||
# We don't need to use ldb or sst_dump (core_tools)
|
|
||||||
"WITH_CORE_TOOLS"
|
|
||||||
# We don't need to build rocksdb tests
|
|
||||||
"WITH_TESTS"
|
|
||||||
# We use rust-rocksdb via C interface and don't need C++ RTTI
|
|
||||||
"USE_RTTI"
|
|
||||||
# This doesn't exist in RocksDB, and USE_SSE is deprecated for
|
|
||||||
# PORTABLE=$(march)
|
|
||||||
"FORCE_SSE42"
|
|
||||||
]) old.cmakeFlags
|
|
||||||
++ (builtins.map (flag: lib.cmakeBool flag false) [
|
|
||||||
# No real reason to have snappy, no one uses this
|
|
||||||
"WITH_SNAPPY"
|
|
||||||
"ZLIB"
|
|
||||||
"WITH_ZLIB"
|
|
||||||
# We don't need to use ldb or sst_dump (core_tools)
|
|
||||||
"WITH_CORE_TOOLS"
|
|
||||||
# We don't need trace tools
|
|
||||||
"WITH_TRACE_TOOLS"
|
|
||||||
# We don't need to build rocksdb tests
|
|
||||||
"WITH_TESTS"
|
|
||||||
# We use rust-rocksdb via C interface and don't need C++ RTTI
|
|
||||||
"USE_RTTI"
|
|
||||||
]);
|
|
||||||
|
|
||||||
enableLiburing = enableLiburing && notDarwin;
|
|
||||||
|
|
||||||
# outputs has "tools" which we don't need or use
|
|
||||||
outputs = [ "out" ];
|
|
||||||
|
|
||||||
# preInstall hooks has stuff for messing with ldb/sst_dump which we don't need or use
|
|
||||||
preInstall = "";
|
|
||||||
|
|
||||||
# We have this already at https://forgejo.ellis.link/continuwuation/rocksdb/commit/a935c0273e1ba44eacf88ce3685a9b9831486155
|
|
||||||
# Unsetting `patches` so we don't have to revert it and make this nix exclusive
|
|
||||||
patches = [ ];
|
|
||||||
})
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
{ inputs, ... }:
|
|
||||||
{
|
|
||||||
perSystem =
|
|
||||||
{
|
|
||||||
system,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
packages =
|
|
||||||
let
|
|
||||||
fnx = inputs.fenix.packages.${system};
|
|
||||||
|
|
||||||
stable = fnx.fromToolchainFile {
|
|
||||||
file = inputs.self + "/rust-toolchain.toml";
|
|
||||||
|
|
||||||
# See also `rust-toolchain.toml`
|
|
||||||
sha256 = "sha256-+9FmLhAOezBZCOziO0Qct1NOrfpjNsXxc/8I0c7BdKE=";
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
# used for building nix stuff (doesn't include rustfmt overhead)
|
|
||||||
build-toolchain = stable;
|
|
||||||
# used for dev shells
|
|
||||||
dev-toolchain = fnx.combine [
|
|
||||||
stable
|
|
||||||
# use the nightly rustfmt because we use nightly features
|
|
||||||
fnx.complete.rustfmt
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,108 +0,0 @@
|
|||||||
args@{ pkgs, inputs, ... }:
|
|
||||||
let
|
|
||||||
inherit (pkgs) lib;
|
|
||||||
uwuenv = import ./environment.nix args;
|
|
||||||
selfpkgs = inputs.self.packages.${pkgs.stdenv.system};
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
# basic, very minimal instance of the crane library with a minimal rust toolchain
|
|
||||||
craneLib = (inputs.crane.mkLib pkgs).overrideToolchain (_: selfpkgs.build-toolchain);
|
|
||||||
# the checks require more rust toolchain components, hence we have this separate instance of the crane library
|
|
||||||
craneLibForChecks = (inputs.crane.mkLib pkgs).overrideToolchain (_: selfpkgs.dev-toolchain);
|
|
||||||
|
|
||||||
# meta information (name, version, etc) of the rust crate based on the Cargo.toml
|
|
||||||
crateInfo = craneLib.crateNameFromCargoToml { cargoToml = "${inputs.self}/Cargo.toml"; };
|
|
||||||
|
|
||||||
src =
|
|
||||||
let
|
|
||||||
# see https://crane.dev/API.html#cranelibfiltercargosources
|
|
||||||
#
|
|
||||||
# we need to keep the `web` directory which would be filtered out by the regular source filtering function
|
|
||||||
#
|
|
||||||
# https://crane.dev/API.html#cranelibcleancargosource
|
|
||||||
isWebTemplate = path: _type: builtins.match ".*src/web.*" path != null;
|
|
||||||
isRust = craneLib.filterCargoSources;
|
|
||||||
isNix = path: _type: builtins.match ".+/nix.*" path != null;
|
|
||||||
webOrRustNotNix = p: t: !(isNix p t) && (isWebTemplate p t || isRust p t);
|
|
||||||
in
|
|
||||||
lib.cleanSourceWith {
|
|
||||||
src = inputs.self;
|
|
||||||
filter = webOrRustNotNix;
|
|
||||||
name = "source";
|
|
||||||
};
|
|
||||||
|
|
||||||
# common attrs that are shared between building continuwuity's deps and the package itself
|
|
||||||
commonAttrs =
|
|
||||||
{
|
|
||||||
profile ? "dev",
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
inherit (crateInfo)
|
|
||||||
pname
|
|
||||||
version
|
|
||||||
;
|
|
||||||
inherit src;
|
|
||||||
|
|
||||||
# this prevents unnecessary rebuilds
|
|
||||||
strictDeps = true;
|
|
||||||
|
|
||||||
dontStrip = profile == "dev" || profile == "test";
|
|
||||||
dontPatchELF = profile == "dev" || profile == "test";
|
|
||||||
|
|
||||||
doCheck = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
# bindgen needs the build platform's libclang. Apparently due to "splicing
|
|
||||||
# weirdness", pkgs.rustPlatform.bindgenHook on its own doesn't quite do the
|
|
||||||
# right thing here.
|
|
||||||
pkgs.rustPlatform.bindgenHook
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
makeRocksDBEnv =
|
|
||||||
{ rocksdb }:
|
|
||||||
{
|
|
||||||
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
|
|
||||||
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
|
||||||
};
|
|
||||||
|
|
||||||
# function that builds the continuwuity dependencies derivation
|
|
||||||
buildDeps =
|
|
||||||
{
|
|
||||||
rocksdb,
|
|
||||||
features,
|
|
||||||
commonAttrsArgs,
|
|
||||||
}:
|
|
||||||
craneLib.buildDepsOnly (
|
|
||||||
(commonAttrs commonAttrsArgs)
|
|
||||||
// {
|
|
||||||
env = uwuenv.buildDepsOnlyEnv // (makeRocksDBEnv { inherit rocksdb; });
|
|
||||||
inherit (features) cargoExtraArgs;
|
|
||||||
}
|
|
||||||
|
|
||||||
);
|
|
||||||
|
|
||||||
# function that builds the continuwuity package
|
|
||||||
buildPackage =
|
|
||||||
{
|
|
||||||
deps,
|
|
||||||
rocksdb,
|
|
||||||
features,
|
|
||||||
commonAttrsArgs,
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
rocksdbEnv = makeRocksDBEnv { inherit rocksdb; };
|
|
||||||
in
|
|
||||||
craneLib.buildPackage (
|
|
||||||
(commonAttrs commonAttrsArgs)
|
|
||||||
// {
|
|
||||||
cargoArtifacts = deps;
|
|
||||||
doCheck = true;
|
|
||||||
env = uwuenv.buildPackageEnv // rocksdbEnv;
|
|
||||||
passthru.env = uwuenv.buildPackageEnv // rocksdbEnv;
|
|
||||||
meta.mainProgram = crateInfo.pname;
|
|
||||||
inherit (features) cargoExtraArgs;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
{ inputs, ... }:
|
|
||||||
{
|
|
||||||
flake.uwulib = {
|
|
||||||
init = pkgs: {
|
|
||||||
features = import ./features.nix { inherit pkgs inputs; };
|
|
||||||
environment = import ./environment.nix { inherit pkgs inputs; };
|
|
||||||
build = import ./build.nix { inherit pkgs inputs; };
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
args@{ pkgs, inputs, ... }:
|
|
||||||
let
|
|
||||||
uwubuild = import ./build.nix args;
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
buildDepsOnlyEnv = {
|
|
||||||
# https://crane.dev/faq/rebuilds-bindgen.html
|
|
||||||
NIX_OUTPATH_USED_AS_RANDOM_SEED = "aaaaaaaaaa";
|
|
||||||
CARGO_PROFILE = "release";
|
|
||||||
}
|
|
||||||
// uwubuild.craneLib.mkCrossToolchainEnv (p: pkgs.clangStdenv);
|
|
||||||
|
|
||||||
buildPackageEnv = {
|
|
||||||
GIT_COMMIT_HASH = inputs.self.rev or inputs.self.dirtyRev or "";
|
|
||||||
GIT_COMMIT_HASH_SHORT = inputs.self.shortRev or inputs.self.dirtyShortRev or "";
|
|
||||||
}
|
|
||||||
// buildDepsOnlyEnv;
|
|
||||||
}
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
{ pkgs, inputs, ... }:
|
|
||||||
let
|
|
||||||
inherit (pkgs) lib;
|
|
||||||
in
|
|
||||||
rec {
|
|
||||||
defaultDisabledFeatures = [
|
|
||||||
# dont include experimental features
|
|
||||||
"experimental"
|
|
||||||
# jemalloc profiling/stats features are expensive and shouldn't
|
|
||||||
# be expected on non-debug builds.
|
|
||||||
"jemalloc_prof"
|
|
||||||
"jemalloc_stats"
|
|
||||||
# this is non-functional on nix for some reason
|
|
||||||
"hardened_malloc"
|
|
||||||
# conduwuit_mods is a development-only hot reload feature
|
|
||||||
"conduwuit_mods"
|
|
||||||
# we don't want to enable this feature set by default but be more specific about it
|
|
||||||
"full"
|
|
||||||
];
|
|
||||||
# We perform default-feature unification in nix, because some of the dependencies
|
|
||||||
# on the nix side depend on feature values.
|
|
||||||
calcFeatures =
|
|
||||||
{
|
|
||||||
tomlPath ? "${inputs.self}/src/main",
|
|
||||||
# either a list of feature names or a string "all" which enables all non-default features
|
|
||||||
enabledFeatures ? [ ],
|
|
||||||
disabledFeatures ? defaultDisabledFeatures,
|
|
||||||
default_features ? true,
|
|
||||||
disable_release_max_log_level ? false,
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
# simple helper to get the contents of a Cargo.toml file in a nix format
|
|
||||||
getToml = path: lib.importTOML "${path}/Cargo.toml";
|
|
||||||
|
|
||||||
# get all the features except for the default features
|
|
||||||
allFeatures = lib.pipe tomlPath [
|
|
||||||
getToml
|
|
||||||
(manifest: manifest.features)
|
|
||||||
lib.attrNames
|
|
||||||
(lib.remove "default")
|
|
||||||
];
|
|
||||||
|
|
||||||
# get just the default enabled features
|
|
||||||
allDefaultFeatures = lib.pipe tomlPath [
|
|
||||||
getToml
|
|
||||||
(manifest: manifest.features.default)
|
|
||||||
];
|
|
||||||
|
|
||||||
# depending on the value of enabledFeatures choose just a set or all non-default features
|
|
||||||
#
|
|
||||||
# - [ list of features ] -> choose exactly the features listed
|
|
||||||
# - "all" -> choose all non-default features
|
|
||||||
additionalFeatures = if enabledFeatures == "all" then allFeatures else enabledFeatures;
|
|
||||||
|
|
||||||
# unification with default features (if enabled)
|
|
||||||
features = lib.unique (additionalFeatures ++ lib.optionals default_features allDefaultFeatures);
|
|
||||||
|
|
||||||
# prepare the features that are subtracted from the set
|
|
||||||
disabledFeatures' =
|
|
||||||
disabledFeatures ++ lib.optionals disable_release_max_log_level [ "release_max_log_level" ];
|
|
||||||
|
|
||||||
# construct the final feature set
|
|
||||||
finalFeatures = lib.subtractLists disabledFeatures' features;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
# final feature set, useful for querying it
|
|
||||||
features = finalFeatures;
|
|
||||||
|
|
||||||
# crane flag with the relevant features
|
|
||||||
cargoExtraArgs = builtins.concatStringsSep " " [
|
|
||||||
"--no-default-features"
|
|
||||||
"--locked"
|
|
||||||
(lib.optionalString (finalFeatures != [ ]) "--features")
|
|
||||||
(builtins.concatStringsSep "," finalFeatures)
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
{ lib
|
||||||
|
, pkgsBuildHost
|
||||||
|
, rust
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
lib.optionalAttrs stdenv.hostPlatform.isStatic
|
||||||
|
{
|
||||||
|
ROCKSDB_STATIC = "";
|
||||||
|
}
|
||||||
|
//
|
||||||
|
{
|
||||||
|
CARGO_BUILD_RUSTFLAGS =
|
||||||
|
lib.concatStringsSep
|
||||||
|
" "
|
||||||
|
(lib.optionals
|
||||||
|
stdenv.hostPlatform.isStatic
|
||||||
|
[ "-C" "relocation-model=static" ]
|
||||||
|
++ lib.optionals
|
||||||
|
(stdenv.buildPlatform.config != stdenv.hostPlatform.config)
|
||||||
|
[
|
||||||
|
"-l"
|
||||||
|
"c"
|
||||||
|
|
||||||
|
"-l"
|
||||||
|
"stdc++"
|
||||||
|
|
||||||
|
"-L"
|
||||||
|
"${stdenv.cc.cc.lib}/${stdenv.hostPlatform.config}/lib"
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
# What follows is stolen from [here][0]. Its purpose is to properly
|
||||||
|
# configure compilers and linkers for various stages of the build, and
|
||||||
|
# even covers the case of build scripts that need native code compiled and
|
||||||
|
# run on the build platform (I think).
|
||||||
|
#
|
||||||
|
# [0]: https://github.com/NixOS/nixpkgs/blob/nixpkgs-unstable/pkgs/build-support/rust/lib/default.nix#L48-L68
|
||||||
|
//
|
||||||
|
(
|
||||||
|
let
|
||||||
|
inherit (rust.lib) envVars;
|
||||||
|
in
|
||||||
|
lib.optionalAttrs
|
||||||
|
(stdenv.targetPlatform.rust.rustcTarget
|
||||||
|
!= stdenv.hostPlatform.rust.rustcTarget)
|
||||||
|
(
|
||||||
|
let
|
||||||
|
inherit (stdenv.targetPlatform.rust) cargoEnvVarTarget;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
"CC_${cargoEnvVarTarget}" = envVars.ccForTarget;
|
||||||
|
"CXX_${cargoEnvVarTarget}" = envVars.cxxForTarget;
|
||||||
|
"CARGO_TARGET_${cargoEnvVarTarget}_LINKER" = envVars.ccForTarget;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
//
|
||||||
|
(
|
||||||
|
let
|
||||||
|
inherit (stdenv.hostPlatform.rust) cargoEnvVarTarget rustcTarget;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
"CC_${cargoEnvVarTarget}" = envVars.ccForHost;
|
||||||
|
"CXX_${cargoEnvVarTarget}" = envVars.cxxForHost;
|
||||||
|
"CARGO_TARGET_${cargoEnvVarTarget}_LINKER" = envVars.ccForHost;
|
||||||
|
CARGO_BUILD_TARGET = rustcTarget;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
//
|
||||||
|
(
|
||||||
|
let
|
||||||
|
inherit (stdenv.buildPlatform.rust) cargoEnvVarTarget;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
"CC_${cargoEnvVarTarget}" = envVars.ccForBuild;
|
||||||
|
"CXX_${cargoEnvVarTarget}" = envVars.cxxForBuild;
|
||||||
|
"CARGO_TARGET_${cargoEnvVarTarget}_LINKER" = envVars.ccForBuild;
|
||||||
|
HOST_CC = "${pkgsBuildHost.stdenv.cc}/bin/cc";
|
||||||
|
HOST_CXX = "${pkgsBuildHost.stdenv.cc}/bin/c++";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
@@ -0,0 +1,224 @@
|
|||||||
|
# Dependencies (keep sorted)
|
||||||
|
{ craneLib
|
||||||
|
, inputs
|
||||||
|
, jq
|
||||||
|
, lib
|
||||||
|
, libiconv
|
||||||
|
, liburing
|
||||||
|
, pkgsBuildHost
|
||||||
|
, rocksdb
|
||||||
|
, removeReferencesTo
|
||||||
|
, rust
|
||||||
|
, rust-jemalloc-sys
|
||||||
|
, stdenv
|
||||||
|
|
||||||
|
# Options (keep sorted)
|
||||||
|
, all_features ? false
|
||||||
|
, default_features ? true
|
||||||
|
# default list of disabled features
|
||||||
|
, disable_features ? [
|
||||||
|
# dont include experimental features
|
||||||
|
"experimental"
|
||||||
|
# jemalloc profiling/stats features are expensive and shouldn't
|
||||||
|
# be expected on non-debug builds.
|
||||||
|
"jemalloc_prof"
|
||||||
|
"jemalloc_stats"
|
||||||
|
# this is non-functional on nix for some reason
|
||||||
|
"hardened_malloc"
|
||||||
|
# conduwuit_mods is a development-only hot reload feature
|
||||||
|
"conduwuit_mods"
|
||||||
|
]
|
||||||
|
, disable_release_max_log_level ? false
|
||||||
|
, features ? [ ]
|
||||||
|
, profile ? "release"
|
||||||
|
# rocksdb compiled with -march=haswell and target-cpu=haswell rustflag
|
||||||
|
# haswell is pretty much any x86 cpu made in the last 12 years, and
|
||||||
|
# supports modern CPU extensions that rocksdb can make use of.
|
||||||
|
# disable if trying to make a portable x86_64 build for very old hardware
|
||||||
|
, x86_64_haswell_target_optimised ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
# We perform default-feature unification in nix, because some of the dependencies
|
||||||
|
# on the nix side depend on feature values.
|
||||||
|
crateFeatures = path:
|
||||||
|
let manifest = lib.importTOML "${path}/Cargo.toml"; in
|
||||||
|
lib.remove "default" (lib.attrNames manifest.features);
|
||||||
|
crateDefaultFeatures = path:
|
||||||
|
(lib.importTOML "${path}/Cargo.toml").features.default;
|
||||||
|
allDefaultFeatures = crateDefaultFeatures "${inputs.self}/src/main";
|
||||||
|
allFeatures = crateFeatures "${inputs.self}/src/main";
|
||||||
|
features' = lib.unique
|
||||||
|
(features ++
|
||||||
|
lib.optionals default_features allDefaultFeatures ++
|
||||||
|
lib.optionals all_features allFeatures);
|
||||||
|
disable_features' = disable_features ++ lib.optionals disable_release_max_log_level [ "release_max_log_level" ];
|
||||||
|
features'' = lib.subtractLists disable_features' features';
|
||||||
|
|
||||||
|
featureEnabled = feature: builtins.elem feature features'';
|
||||||
|
|
||||||
|
enableLiburing = featureEnabled "io_uring" && !stdenv.hostPlatform.isDarwin;
|
||||||
|
|
||||||
|
# This derivation will set the JEMALLOC_OVERRIDE variable, causing the
|
||||||
|
# tikv-jemalloc-sys crate to use the nixpkgs jemalloc instead of building it's
|
||||||
|
# own. In order for this to work, we need to set flags on the build that match
|
||||||
|
# whatever flags tikv-jemalloc-sys was going to use. These are dependent on
|
||||||
|
# which features we enable in tikv-jemalloc-sys.
|
||||||
|
rust-jemalloc-sys' = (rust-jemalloc-sys.override {
|
||||||
|
# tikv-jemalloc-sys/unprefixed_malloc_on_supported_platforms feature
|
||||||
|
unprefixed = true;
|
||||||
|
}).overrideAttrs (old: {
|
||||||
|
configureFlags = old.configureFlags ++
|
||||||
|
# we dont need docs
|
||||||
|
[ "--disable-doc" ] ++
|
||||||
|
# we dont need cxx/C++ integration
|
||||||
|
[ "--disable-cxx" ] ++
|
||||||
|
# tikv-jemalloc-sys/profiling feature
|
||||||
|
lib.optional (featureEnabled "jemalloc_prof") "--enable-prof" ++
|
||||||
|
# tikv-jemalloc-sys/stats feature
|
||||||
|
(if (featureEnabled "jemalloc_stats") then [ "--enable-stats" ] else [ "--disable-stats" ]);
|
||||||
|
});
|
||||||
|
|
||||||
|
buildDepsOnlyEnv =
|
||||||
|
let
|
||||||
|
rocksdb' = (rocksdb.override {
|
||||||
|
jemalloc = lib.optional (featureEnabled "jemalloc") rust-jemalloc-sys';
|
||||||
|
# rocksdb fails to build with prefixed jemalloc, which is required on
|
||||||
|
# darwin due to [1]. In this case, fall back to building rocksdb with
|
||||||
|
# libc malloc. This should not cause conflicts, because all of the
|
||||||
|
# jemalloc symbols are prefixed.
|
||||||
|
#
|
||||||
|
# [1]: https://github.com/tikv/jemallocator/blob/ab0676d77e81268cd09b059260c75b38dbef2d51/jemalloc-sys/src/env.rs#L17
|
||||||
|
enableJemalloc = featureEnabled "jemalloc" && !stdenv.hostPlatform.isDarwin;
|
||||||
|
|
||||||
|
# for some reason enableLiburing in nixpkgs rocksdb is default true
|
||||||
|
# which breaks Darwin entirely
|
||||||
|
inherit enableLiburing;
|
||||||
|
}).overrideAttrs (old: {
|
||||||
|
inherit enableLiburing;
|
||||||
|
cmakeFlags = (if x86_64_haswell_target_optimised then
|
||||||
|
(lib.subtractLists [
|
||||||
|
# dont make a portable build if x86_64_haswell_target_optimised is enabled
|
||||||
|
"-DPORTABLE=1"
|
||||||
|
]
|
||||||
|
old.cmakeFlags
|
||||||
|
++ [ "-DPORTABLE=haswell" ]) else [ "-DPORTABLE=1" ]
|
||||||
|
)
|
||||||
|
++ old.cmakeFlags;
|
||||||
|
|
||||||
|
# outputs has "tools" which we dont need or use
|
||||||
|
outputs = [ "out" ];
|
||||||
|
|
||||||
|
# preInstall hooks has stuff for messing with ldb/sst_dump which we dont need or use
|
||||||
|
preInstall = "";
|
||||||
|
});
|
||||||
|
in
|
||||||
|
{
|
||||||
|
# https://crane.dev/faq/rebuilds-bindgen.html
|
||||||
|
NIX_OUTPATH_USED_AS_RANDOM_SEED = "aaaaaaaaaa";
|
||||||
|
|
||||||
|
CARGO_PROFILE = profile;
|
||||||
|
ROCKSDB_INCLUDE_DIR = "${rocksdb'}/include";
|
||||||
|
ROCKSDB_LIB_DIR = "${rocksdb'}/lib";
|
||||||
|
}
|
||||||
|
//
|
||||||
|
(import ./cross-compilation-env.nix {
|
||||||
|
# Keep sorted
|
||||||
|
inherit
|
||||||
|
lib
|
||||||
|
pkgsBuildHost
|
||||||
|
rust
|
||||||
|
stdenv;
|
||||||
|
});
|
||||||
|
|
||||||
|
buildPackageEnv = {
|
||||||
|
GIT_COMMIT_HASH = inputs.self.rev or inputs.self.dirtyRev or "";
|
||||||
|
GIT_COMMIT_HASH_SHORT = inputs.self.shortRev or inputs.self.dirtyShortRev or "";
|
||||||
|
} // buildDepsOnlyEnv // {
|
||||||
|
# Only needed in static stdenv because these are transitive dependencies of rocksdb
|
||||||
|
CARGO_BUILD_RUSTFLAGS = buildDepsOnlyEnv.CARGO_BUILD_RUSTFLAGS
|
||||||
|
+ lib.optionalString (enableLiburing && stdenv.hostPlatform.isStatic)
|
||||||
|
" -L${lib.getLib liburing}/lib -luring"
|
||||||
|
+ lib.optionalString x86_64_haswell_target_optimised
|
||||||
|
" -Ctarget-cpu=haswell";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
commonAttrs = {
|
||||||
|
inherit
|
||||||
|
(craneLib.crateNameFromCargoToml {
|
||||||
|
cargoToml = "${inputs.self}/Cargo.toml";
|
||||||
|
})
|
||||||
|
pname
|
||||||
|
version;
|
||||||
|
|
||||||
|
src = let filter = inputs.nix-filter.lib; in filter {
|
||||||
|
root = inputs.self;
|
||||||
|
|
||||||
|
# Keep sorted
|
||||||
|
include = [
|
||||||
|
".cargo"
|
||||||
|
"Cargo.lock"
|
||||||
|
"Cargo.toml"
|
||||||
|
"src"
|
||||||
|
"xtask"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
cargoExtraArgs = "--no-default-features --locked "
|
||||||
|
+ lib.optionalString
|
||||||
|
(features'' != [ ])
|
||||||
|
"--features " + (builtins.concatStringsSep "," features'');
|
||||||
|
|
||||||
|
dontStrip = profile == "dev" || profile == "test";
|
||||||
|
dontPatchELF = profile == "dev" || profile == "test";
|
||||||
|
|
||||||
|
buildInputs = lib.optional (featureEnabled "jemalloc") rust-jemalloc-sys'
|
||||||
|
# needed to build Rust applications on macOS
|
||||||
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/206242
|
||||||
|
# ld: library not found for -liconv
|
||||||
|
libiconv
|
||||||
|
# https://stackoverflow.com/questions/69869574/properly-adding-darwin-apple-sdk-to-a-nix-shell
|
||||||
|
# https://discourse.nixos.org/t/compile-a-rust-binary-on-macos-dbcrossbar/8612
|
||||||
|
pkgsBuildHost.darwin.apple_sdk.frameworks.Security
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
# bindgen needs the build platform's libclang. Apparently due to "splicing
|
||||||
|
# weirdness", pkgs.rustPlatform.bindgenHook on its own doesn't quite do the
|
||||||
|
# right thing here.
|
||||||
|
pkgsBuildHost.rustPlatform.bindgenHook
|
||||||
|
|
||||||
|
# We don't actually depend on `jq`, but crane's `buildPackage` does, but
|
||||||
|
# its `buildDepsOnly` doesn't. This causes those two derivations to have
|
||||||
|
# differing values for `NIX_CFLAGS_COMPILE`, which contributes to spurious
|
||||||
|
# rebuilds of bindgen and its depedents.
|
||||||
|
jq
|
||||||
|
];
|
||||||
|
};
|
||||||
|
in
|
||||||
|
|
||||||
|
craneLib.buildPackage (commonAttrs // {
|
||||||
|
cargoArtifacts = craneLib.buildDepsOnly (commonAttrs // {
|
||||||
|
env = buildDepsOnlyEnv;
|
||||||
|
});
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
cargoExtraArgs = "--no-default-features --locked "
|
||||||
|
+ lib.optionalString
|
||||||
|
(features'' != [ ])
|
||||||
|
"--features " + (builtins.concatStringsSep "," features'');
|
||||||
|
|
||||||
|
env = buildPackageEnv;
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
env = buildPackageEnv;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta.mainProgram = commonAttrs.pname;
|
||||||
|
})
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
{ inputs, ... }:
|
|
||||||
{
|
|
||||||
perSystem =
|
|
||||||
{
|
|
||||||
self',
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
let
|
|
||||||
uwulib = inputs.self.uwulib.init pkgs;
|
|
||||||
rocksdbAllFeatures = self'.packages.rocksdb.override {
|
|
||||||
enableJemalloc = true;
|
|
||||||
enableLiburing = true;
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
# basic nix shell containing all things necessary to build continuwuity in all flavors manually (on x86_64-linux)
|
|
||||||
devShells.default = uwulib.build.craneLib.devShell {
|
|
||||||
packages = [
|
|
||||||
pkgs.pkg-config
|
|
||||||
pkgs.liburing
|
|
||||||
pkgs.rust-jemalloc-sys-unprefixed
|
|
||||||
rocksdbAllFeatures
|
|
||||||
];
|
|
||||||
env.LIBCLANG_PATH = lib.makeLibraryPath [ pkgs.llvmPackages.libclang.lib ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,124 +0,0 @@
|
|||||||
{
|
|
||||||
perSystem =
|
|
||||||
{
|
|
||||||
self',
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
# run some nixos tests as checks
|
|
||||||
checks = lib.pipe self'.packages [
|
|
||||||
# we take all packages (names)
|
|
||||||
builtins.attrNames
|
|
||||||
# we filter out all packages that end with `-bin` (which we are interested in for testing)
|
|
||||||
(builtins.filter (lib.hasSuffix "-bin"))
|
|
||||||
# for each of these binaries we built the basic nixos test
|
|
||||||
#
|
|
||||||
# this test was initially yoinked from
|
|
||||||
#
|
|
||||||
# https://github.com/NixOS/nixpkgs/blob/960ce26339661b1b69c6f12b9063ca51b688615f/nixos/tests/matrix/continuwuity.nix
|
|
||||||
(builtins.map (name: {
|
|
||||||
name = "test-${name}";
|
|
||||||
value = pkgs.testers.runNixOSTest {
|
|
||||||
inherit name;
|
|
||||||
|
|
||||||
nodes = {
|
|
||||||
continuwuity = {
|
|
||||||
services.matrix-continuwuity = {
|
|
||||||
enable = true;
|
|
||||||
package = self'.packages.${name};
|
|
||||||
settings.global = {
|
|
||||||
server_name = name;
|
|
||||||
address = [ "0.0.0.0" ];
|
|
||||||
allow_registration = true;
|
|
||||||
yes_i_am_very_very_sure_i_want_an_open_registration_server_prone_to_abuse = true;
|
|
||||||
};
|
|
||||||
extraEnvironment.RUST_BACKTRACE = "yes";
|
|
||||||
};
|
|
||||||
networking.firewall.allowedTCPPorts = [ 6167 ];
|
|
||||||
};
|
|
||||||
client =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = [
|
|
||||||
(pkgs.writers.writePython3Bin "do_test" { libraries = [ pkgs.python3Packages.matrix-nio ]; } ''
|
|
||||||
import asyncio
|
|
||||||
import nio
|
|
||||||
|
|
||||||
|
|
||||||
async def main() -> None:
|
|
||||||
# Connect to continuwuity
|
|
||||||
client = nio.AsyncClient("http://continuwuity:6167", "alice")
|
|
||||||
|
|
||||||
# Register as user alice
|
|
||||||
response = await client.register("alice", "my-secret-password")
|
|
||||||
|
|
||||||
# Log in as user alice
|
|
||||||
response = await client.login("my-secret-password")
|
|
||||||
|
|
||||||
# Create a new room
|
|
||||||
response = await client.room_create(federate=False)
|
|
||||||
print("Matrix room create response:", response)
|
|
||||||
assert isinstance(response, nio.RoomCreateResponse)
|
|
||||||
room_id = response.room_id
|
|
||||||
|
|
||||||
# Join the room
|
|
||||||
response = await client.join(room_id)
|
|
||||||
print("Matrix join response:", response)
|
|
||||||
assert isinstance(response, nio.JoinResponse)
|
|
||||||
|
|
||||||
# Send a message to the room
|
|
||||||
response = await client.room_send(
|
|
||||||
room_id=room_id,
|
|
||||||
message_type="m.room.message",
|
|
||||||
content={
|
|
||||||
"msgtype": "m.text",
|
|
||||||
"body": "Hello continuwuity!"
|
|
||||||
}
|
|
||||||
)
|
|
||||||
print("Matrix room send response:", response)
|
|
||||||
assert isinstance(response, nio.RoomSendResponse)
|
|
||||||
|
|
||||||
# Sync responses
|
|
||||||
response = await client.sync(timeout=30000)
|
|
||||||
print("Matrix sync response:", response)
|
|
||||||
assert isinstance(response, nio.SyncResponse)
|
|
||||||
|
|
||||||
# Check the message was received by continuwuity
|
|
||||||
last_message = response.rooms.join[room_id].timeline.events[-1].body
|
|
||||||
assert last_message == "Hello continuwuity!"
|
|
||||||
|
|
||||||
# Leave the room
|
|
||||||
response = await client.room_leave(room_id)
|
|
||||||
print("Matrix room leave response:", response)
|
|
||||||
assert isinstance(response, nio.RoomLeaveResponse)
|
|
||||||
|
|
||||||
# Close the client
|
|
||||||
await client.close()
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
asyncio.run(main())
|
|
||||||
'')
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
testScript = ''
|
|
||||||
start_all()
|
|
||||||
|
|
||||||
with subtest("start continuwuity"):
|
|
||||||
continuwuity.wait_for_unit("continuwuity.service")
|
|
||||||
continuwuity.wait_for_open_port(6167)
|
|
||||||
|
|
||||||
with subtest("ensure messages can be exchanged"):
|
|
||||||
client.succeed("do_test >&2")
|
|
||||||
'';
|
|
||||||
|
|
||||||
};
|
|
||||||
}))
|
|
||||||
builtins.listToAttrs
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# TODO: implement debconf support that is maintainable without duplicating the config
|
|
||||||
#. /usr/share/debconf/confmodule
|
|
||||||
|
|
||||||
CONDUWUIT_DATABASE_PATH=/var/lib/conduwuit
|
|
||||||
CONDUWUIT_CONFIG_PATH=/etc/conduwuit
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure)
|
|
||||||
echo ''
|
|
||||||
echo 'Make sure you edit the example config at /etc/conduwuit/conduwuit.toml before starting!'
|
|
||||||
echo 'To start the server, run: systemctl start conduwuit.service'
|
|
||||||
echo ''
|
|
||||||
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
# This should be run using rpkg: https://docs.pagure.org/rpkg
|
|
||||||
# it requires Internet access and is not suitable for Fedora main repos
|
|
||||||
|
|
||||||
Name: continuwuity
|
|
||||||
Version: {{{ git_repo_version }}}
|
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: Very cool Matrix chat homeserver written in Rust
|
|
||||||
|
|
||||||
License: Apache-2.0 AND MIT
|
|
||||||
|
|
||||||
URL: https://continuwuity.org
|
|
||||||
VCS: {{{ git_repo_vcs }}}
|
|
||||||
Source: {{{ git_repo_pack }}}
|
|
||||||
|
|
||||||
BuildRequires: cargo-rpm-macros >= 25
|
|
||||||
BuildRequires: systemd-rpm-macros
|
|
||||||
# Needed to build rust-librocksdb-sys
|
|
||||||
BuildRequires: clang
|
|
||||||
BuildRequires: liburing-devel
|
|
||||||
|
|
||||||
Requires: liburing
|
|
||||||
Requires: glibc
|
|
||||||
Requires: libstdc++
|
|
||||||
|
|
||||||
%global _description %{expand:
|
|
||||||
A cool hard fork of Conduit, a Matrix homeserver written in Rust}
|
|
||||||
|
|
||||||
%description %{_description}
|
|
||||||
|
|
||||||
%prep
|
|
||||||
{{{ git_repo_setup_macro }}}
|
|
||||||
%cargo_prep -N
|
|
||||||
# Perform an online build so Git dependencies can be retrieved
|
|
||||||
sed -i 's/^offline = true$//' .cargo/config.toml
|
|
||||||
|
|
||||||
%build
|
|
||||||
%cargo_build
|
|
||||||
|
|
||||||
# Here's the one legally required mystery incantation in this file.
|
|
||||||
# Some of our dependencies have source files which are (for some reason) marked as executable.
|
|
||||||
# Files in .cargo/registry/ are copied into /usr/src/ by the debuginfo machinery
|
|
||||||
# at the end of the build step, and then the BRP shebang mangling script checks
|
|
||||||
# the entire buildroot to find executable files, and fails the build because
|
|
||||||
# it thinks Rust's file attributes are shebangs because they start with `#!`.
|
|
||||||
# So we have to clear the executable bit on all of them before that happens.
|
|
||||||
find .cargo/registry/ -executable -name "*.rs" -exec chmod -x {} +
|
|
||||||
|
|
||||||
# TODO: this fails currently because it's forced to run in offline mode
|
|
||||||
# {cargo_license -- --no-dev} > LICENSE.dependencies
|
|
||||||
|
|
||||||
%install
|
|
||||||
install -Dpm0755 target/rpm/conduwuit -t %{buildroot}%{_bindir}
|
|
||||||
install -Dpm0644 pkg/conduwuit.service -t %{buildroot}%{_unitdir}
|
|
||||||
install -Dpm0600 conduwuit-example.toml %{buildroot}%{_sysconfdir}/conduwuit/conduwuit.toml
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license LICENSE
|
|
||||||
%license src/core/matrix/state_res/LICENSE
|
|
||||||
%doc CODE_OF_CONDUCT.md
|
|
||||||
%doc CONTRIBUTING.md
|
|
||||||
%doc README.md
|
|
||||||
%doc SECURITY.md
|
|
||||||
%config(noreplace) %{_sysconfdir}/conduwuit/conduwuit.toml
|
|
||||||
|
|
||||||
%{_bindir}/conduwuit
|
|
||||||
%{_unitdir}/conduwuit.service
|
|
||||||
# Do not create /var/lib/conduwuit, systemd will create it if necessary
|
|
||||||
|
|
||||||
%post
|
|
||||||
%systemd_post conduwuit.service
|
|
||||||
|
|
||||||
%preun
|
|
||||||
%systemd_preun conduwuit.service
|
|
||||||
|
|
||||||
%postun
|
|
||||||
%systemd_postun_with_restart conduwuit.service
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
{{{ git_repo_changelog }}}
|
|
||||||
+23
-85
@@ -1,88 +1,26 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": ["config:recommended", "replacements:all"],
|
"extends": [
|
||||||
"osvVulnerabilityAlerts": true,
|
"config:recommended"
|
||||||
"lockFileMaintenance": {
|
],
|
||||||
"enabled": true,
|
"lockFileMaintenance": {
|
||||||
"schedule": ["at any time"]
|
"enabled": true,
|
||||||
},
|
"schedule": [
|
||||||
"platformAutomerge": true,
|
"at any time"
|
||||||
"nix": {
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
"pre-commit": {
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
"labels": ["Dependencies", "Dependencies/Renovate"],
|
|
||||||
"ignoreDeps": [
|
|
||||||
"tikv-jemallocator",
|
|
||||||
"tikv-jemalloc-sys",
|
|
||||||
"tikv-jemalloc-ctl",
|
|
||||||
"rustyline-async",
|
|
||||||
"event-listener",
|
|
||||||
"async-channel",
|
|
||||||
"core_affinity",
|
|
||||||
"hyper-util"
|
|
||||||
],
|
|
||||||
"github-actions": {
|
|
||||||
"enabled": true,
|
|
||||||
"managerFilePatterns": [
|
|
||||||
"/(^|/)\\.forgejo/workflows/[^/]+\\.ya?ml$/",
|
|
||||||
"/(^|/)\\.forgejo/actions/[^/]+/action\\.ya?ml$/",
|
|
||||||
"/(^|/)\\.github/workflows/[^/]+\\.ya?ml$/",
|
|
||||||
"/(^|/)\\.github/actions/[^/]+/action\\.ya?ml$/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"packageRules": [
|
|
||||||
{
|
|
||||||
"description": "Batch patch-level Rust dependency updates",
|
|
||||||
"matchManagers": ["cargo"],
|
|
||||||
"matchUpdateTypes": ["patch"],
|
|
||||||
"groupName": "rust-patch-updates"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Limit concurrent Cargo PRs",
|
|
||||||
"matchManagers": ["cargo"],
|
|
||||||
"prConcurrentLimit": 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Group Rust toolchain updates into a single PR",
|
|
||||||
"matchManagers": ["custom.regex"],
|
|
||||||
"matchPackageNames": ["rust", "rustc", "cargo"],
|
|
||||||
"groupName": "rust-toolchain"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Batch minor and patch GitHub Actions updates",
|
|
||||||
"matchManagers": ["github-actions"],
|
|
||||||
"matchUpdateTypes": ["minor", "patch"],
|
|
||||||
"groupName": "github-actions-non-major"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Pin forgejo artifact actions to prevent breaking changes",
|
|
||||||
"matchManagers": ["github-actions"],
|
|
||||||
"matchPackageNames": ["forgejo/upload-artifact", "forgejo/download-artifact"],
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Auto-merge renovatebot docker image updates",
|
|
||||||
"matchDatasources": ["docker"],
|
|
||||||
"matchPackageNames": ["ghcr.io/renovatebot/renovate"],
|
|
||||||
"automerge": true,
|
|
||||||
"automergeStrategy": "fast-forward",
|
|
||||||
"extends": ["schedule:earlyMondays"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"customManagers": [
|
|
||||||
{
|
|
||||||
"customType": "regex",
|
|
||||||
"description": "Update _VERSION variables in Dockerfiles",
|
|
||||||
"managerFilePatterns": [
|
|
||||||
"/(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$/",
|
|
||||||
"/(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$/"
|
|
||||||
],
|
|
||||||
"matchStrings": [
|
|
||||||
"# renovate: datasource=(?<datasource>[a-zA-Z0-9-._]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))?\\s+(?:ENV\\s+|ARG\\s+)?[A-Za-z0-9_]+?_VERSION[ =][\"']?(?<currentValue>.+?)[\"']?\\s+(?:(?:ENV\\s+|ARG\\s+)?[A-Za-z0-9_]+?_CHECKSUM[ =][\"']?(?<currentDigest>.+?)[\"']?\\s)?"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"nix": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"labels": [
|
||||||
|
"dependencies",
|
||||||
|
"github_actions"
|
||||||
|
],
|
||||||
|
"ignoreDeps": [
|
||||||
|
"tikv-jemllocator",
|
||||||
|
"tikv-jemalloc-sys",
|
||||||
|
"tikv-jemalloc-ctl",
|
||||||
|
"opentelemetry-rust",
|
||||||
|
"tracing-opentelemetry"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-5
@@ -9,16 +9,13 @@
|
|||||||
# If you're having trouble making the relevant changes, bug a maintainer.
|
# If you're having trouble making the relevant changes, bug a maintainer.
|
||||||
|
|
||||||
[toolchain]
|
[toolchain]
|
||||||
|
channel = "1.87.0"
|
||||||
profile = "minimal"
|
profile = "minimal"
|
||||||
channel = "1.89.0"
|
|
||||||
components = [
|
components = [
|
||||||
# For rust-analyzer
|
# For rust-analyzer
|
||||||
"rust-src",
|
"rust-src",
|
||||||
"rust-analyzer",
|
"rust-analyzer",
|
||||||
# For CI and editors
|
# For CI and editors
|
||||||
|
"rustfmt",
|
||||||
"clippy",
|
"clippy",
|
||||||
# you have to install rustfmt nightly yourself (if you're not on NixOS)
|
|
||||||
#
|
|
||||||
# The rust-toolchain.toml file doesn't provide any syntax for specifying components from different toolchains
|
|
||||||
# "rustfmt"
|
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -85,11 +85,10 @@ futures.workspace = true
|
|||||||
log.workspace = true
|
log.workspace = true
|
||||||
ruma.workspace = true
|
ruma.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde-saphyr.workspace = true
|
serde_yaml.workspace = true
|
||||||
tokio.workspace = true
|
tokio.workspace = true
|
||||||
tracing-subscriber.workspace = true
|
tracing-subscriber.workspace = true
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
ctor.workspace = true
|
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ pub(super) async fn register(&self) -> Result {
|
|||||||
|
|
||||||
let range = 1..checked!(body_len - 1)?;
|
let range = 1..checked!(body_len - 1)?;
|
||||||
let appservice_config_body = body[range].join("\n");
|
let appservice_config_body = body[range].join("\n");
|
||||||
let parsed_config = serde_saphyr::from_str(&appservice_config_body);
|
let parsed_config = serde_yaml::from_str(&appservice_config_body);
|
||||||
match parsed_config {
|
match parsed_config {
|
||||||
| Err(e) => return Err!("Could not parse appservice config as YAML: {e}"),
|
| Err(e) => return Err!("Could not parse appservice config as YAML: {e}"),
|
||||||
| Ok(registration) => match self
|
| Ok(registration) => match self
|
||||||
@@ -57,7 +57,7 @@ pub(super) async fn show_appservice_config(&self, appservice_identifier: String)
|
|||||||
{
|
{
|
||||||
| None => return Err!("Appservice does not exist."),
|
| None => return Err!("Appservice does not exist."),
|
||||||
| Some(config) => {
|
| Some(config) => {
|
||||||
let config_str = serde_saphyr::to_string(&config)?;
|
let config_str = serde_yaml::to_string(&config)?;
|
||||||
write!(self, "Config for {appservice_identifier}:\n\n```yaml\n{config_str}\n```")
|
write!(self, "Config for {appservice_identifier}:\n\n```yaml\n{config_str}\n```")
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -281,8 +281,15 @@ pub(super) async fn get_remote_pdu(
|
|||||||
vec![(event_id, value, room_id)]
|
vec![(event_id, value, room_id)]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
info!("Attempting to handle event ID {event_id} as backfilled PDU");
|
||||||
|
self.services
|
||||||
|
.rooms
|
||||||
|
.timeline
|
||||||
|
.backfill_pdu(&server, response.pdu)
|
||||||
|
.await?;
|
||||||
|
|
||||||
let text = serde_json::to_string_pretty(&json)?;
|
let text = serde_json::to_string_pretty(&json)?;
|
||||||
let msg = "Got PDU from specified server:";
|
let msg = "Got PDU from specified server and handled as backfilled";
|
||||||
write!(self, "{msg}. Event body:\n```json\n{text}\n```")
|
write!(self, "{msg}. Event body:\n```json\n{text}\n```")
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@@ -632,7 +639,6 @@ pub(super) async fn force_set_room_state_from_server(
|
|||||||
.add_pdu_outlier(&event_id, &value);
|
.add_pdu_outlier(&event_id, &value);
|
||||||
}
|
}
|
||||||
|
|
||||||
info!("Resolving new room state");
|
|
||||||
let new_room_state = self
|
let new_room_state = self
|
||||||
.services
|
.services
|
||||||
.rooms
|
.rooms
|
||||||
@@ -640,7 +646,7 @@ pub(super) async fn force_set_room_state_from_server(
|
|||||||
.resolve_state(&room_id, &room_version, state)
|
.resolve_state(&room_id, &room_version, state)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
info!("Compressing new room state");
|
info!("Forcing new room state");
|
||||||
let HashSetCompressStateEvent {
|
let HashSetCompressStateEvent {
|
||||||
shortstatehash: short_state_hash,
|
shortstatehash: short_state_hash,
|
||||||
added,
|
added,
|
||||||
@@ -654,7 +660,6 @@ pub(super) async fn force_set_room_state_from_server(
|
|||||||
|
|
||||||
let state_lock = self.services.rooms.state.mutex.lock(&*room_id).await;
|
let state_lock = self.services.rooms.state.mutex.lock(&*room_id).await;
|
||||||
|
|
||||||
info!("Forcing new room state");
|
|
||||||
self.services
|
self.services
|
||||||
.rooms
|
.rooms
|
||||||
.state
|
.state
|
||||||
|
|||||||
@@ -2,8 +2,7 @@ use std::time::Duration;
|
|||||||
|
|
||||||
use conduwuit::{
|
use conduwuit::{
|
||||||
Err, Result, debug, debug_info, debug_warn, error, info, trace,
|
Err, Result, debug, debug_info, debug_warn, error, info, trace,
|
||||||
utils::time::{TimeDirection, parse_timepoint_ago},
|
utils::time::parse_timepoint_ago, warn,
|
||||||
warn,
|
|
||||||
};
|
};
|
||||||
use conduwuit_service::media::Dim;
|
use conduwuit_service::media::Dim;
|
||||||
use ruma::{Mxc, OwnedEventId, OwnedMxcUri, OwnedServerName};
|
use ruma::{Mxc, OwnedEventId, OwnedMxcUri, OwnedServerName};
|
||||||
@@ -236,19 +235,14 @@ pub(super) async fn delete_past_remote_media(
|
|||||||
}
|
}
|
||||||
assert!(!(before && after), "--before and --after should not be specified together");
|
assert!(!(before && after), "--before and --after should not be specified together");
|
||||||
|
|
||||||
let direction = if after {
|
let duration = parse_timepoint_ago(&duration)?;
|
||||||
TimeDirection::After
|
|
||||||
} else {
|
|
||||||
TimeDirection::Before
|
|
||||||
};
|
|
||||||
|
|
||||||
let time_boundary = parse_timepoint_ago(&duration)?;
|
|
||||||
let deleted_count = self
|
let deleted_count = self
|
||||||
.services
|
.services
|
||||||
.media
|
.media
|
||||||
.delete_all_media_within_timeframe(
|
.delete_all_remote_media_at_after_time(
|
||||||
time_boundary,
|
duration,
|
||||||
direction,
|
before,
|
||||||
|
after,
|
||||||
yes_i_want_to_delete_local_media,
|
yes_i_want_to_delete_local_media,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|||||||
+5
-17
@@ -27,24 +27,12 @@ pub enum MediaCommand {
|
|||||||
/// filesystem. This will always ignore errors.
|
/// filesystem. This will always ignore errors.
|
||||||
DeleteList,
|
DeleteList,
|
||||||
|
|
||||||
/// Deletes all remote (and optionally local) media created before/after
|
/// - Deletes all remote (and optionally local) media created before or
|
||||||
/// [duration] ago, using filesystem metadata first created at date, or
|
/// after [duration] time using filesystem metadata first created at date,
|
||||||
/// fallback to last modified date. This will always ignore errors by
|
/// or fallback to last modified date. This will always ignore errors by
|
||||||
/// default.
|
/// default.
|
||||||
///
|
|
||||||
/// * Examples:
|
|
||||||
/// * Delete all remote media older than a year:
|
|
||||||
///
|
|
||||||
/// `!admin media delete-past-remote-media -b 1y`
|
|
||||||
///
|
|
||||||
/// * Delete all remote and local media from 3 days ago, up until now:
|
|
||||||
///
|
|
||||||
/// `!admin media delete-past-remote-media -a 3d
|
|
||||||
/// --yes-i-want-to-delete-local-media`
|
|
||||||
#[command(verbatim_doc_comment)]
|
|
||||||
DeletePastRemoteMedia {
|
DeletePastRemoteMedia {
|
||||||
/// - The relative time (e.g. 30s, 5m, 7d) from now within which to
|
/// - The relative time (e.g. 30s, 5m, 7d) within which to search
|
||||||
/// search
|
|
||||||
duration: String,
|
duration: String,
|
||||||
|
|
||||||
/// - Only delete media created before [duration] ago
|
/// - Only delete media created before [duration] ago
|
||||||
|
|||||||
@@ -29,8 +29,6 @@ pub(crate) use crate::{context::Context, utils::get_room_info};
|
|||||||
|
|
||||||
pub(crate) const PAGE_SIZE: usize = 100;
|
pub(crate) const PAGE_SIZE: usize = 100;
|
||||||
|
|
||||||
use ctor::{ctor, dtor};
|
|
||||||
|
|
||||||
conduwuit::mod_ctor! {}
|
conduwuit::mod_ctor! {}
|
||||||
conduwuit::mod_dtor! {}
|
conduwuit::mod_dtor! {}
|
||||||
conduwuit::rustc_flags_capture! {}
|
conduwuit::rustc_flags_capture! {}
|
||||||
|
|||||||
@@ -57,5 +57,5 @@ pub(super) async fn pdus(
|
|||||||
.try_collect()
|
.try_collect()
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
self.write_str(&format!("```\n{result:#?}\n```")).await
|
self.write_str(&format!("{result:#?}")).await
|
||||||
}
|
}
|
||||||
|
|||||||
+10
-56
@@ -1,8 +1,8 @@
|
|||||||
use std::{collections::BTreeMap, fmt::Write as _};
|
use std::{collections::BTreeMap, fmt::Write as _};
|
||||||
|
|
||||||
use api::client::{
|
use api::client::{
|
||||||
full_user_deactivate, join_room_by_id_helper, leave_all_rooms, leave_room, remote_leave_room,
|
full_user_deactivate, join_room_by_id_helper, leave_all_rooms, leave_room, update_avatar_url,
|
||||||
update_avatar_url, update_displayname,
|
update_displayname,
|
||||||
};
|
};
|
||||||
use conduwuit::{
|
use conduwuit::{
|
||||||
Err, Result, debug, debug_warn, error, info, is_equal_to,
|
Err, Result, debug, debug_warn, error, info, is_equal_to,
|
||||||
@@ -68,8 +68,7 @@ pub(super) async fn create_user(&self, username: String, password: Option<String
|
|||||||
// Create user
|
// Create user
|
||||||
self.services
|
self.services
|
||||||
.users
|
.users
|
||||||
.create(&user_id, Some(password.as_str()), None)
|
.create(&user_id, Some(password.as_str()))?;
|
||||||
.await?;
|
|
||||||
|
|
||||||
// Default to pretty displayname
|
// Default to pretty displayname
|
||||||
let mut displayname = user_id.localpart().to_owned();
|
let mut displayname = user_id.localpart().to_owned();
|
||||||
@@ -179,11 +178,7 @@ pub(super) async fn create_user(&self, username: String, password: Option<String
|
|||||||
.await
|
.await
|
||||||
.is_ok_and(is_equal_to!(1))
|
.is_ok_and(is_equal_to!(1))
|
||||||
{
|
{
|
||||||
self.services
|
self.services.admin.make_user_admin(&user_id).await?;
|
||||||
.admin
|
|
||||||
.make_user_admin(&user_id)
|
|
||||||
.boxed()
|
|
||||||
.await?;
|
|
||||||
warn!("Granting {user_id} admin privileges as the first user");
|
warn!("Granting {user_id} admin privileges as the first user");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -221,9 +216,7 @@ pub(super) async fn deactivate(&self, no_leave_rooms: bool, user_id: String) ->
|
|||||||
.collect()
|
.collect()
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
full_user_deactivate(self.services, &user_id, &all_joined_rooms)
|
full_user_deactivate(self.services, &user_id, &all_joined_rooms).await?;
|
||||||
.boxed()
|
|
||||||
.await?;
|
|
||||||
update_displayname(self.services, &user_id, None, &all_joined_rooms).await;
|
update_displayname(self.services, &user_id, None, &all_joined_rooms).await;
|
||||||
update_avatar_url(self.services, &user_id, None, None, &all_joined_rooms).await;
|
update_avatar_url(self.services, &user_id, None, None, &all_joined_rooms).await;
|
||||||
leave_all_rooms(self.services, &user_id).await;
|
leave_all_rooms(self.services, &user_id).await;
|
||||||
@@ -291,7 +284,6 @@ pub(super) async fn reset_password(&self, username: String, password: Option<Str
|
|||||||
.services
|
.services
|
||||||
.users
|
.users
|
||||||
.set_password(&user_id, Some(new_password.as_str()))
|
.set_password(&user_id, Some(new_password.as_str()))
|
||||||
.await
|
|
||||||
{
|
{
|
||||||
| Err(e) => return Err!("Couldn't reset the password for user {user_id}: {e}"),
|
| Err(e) => return Err!("Couldn't reset the password for user {user_id}: {e}"),
|
||||||
| Ok(()) => {
|
| Ok(()) => {
|
||||||
@@ -382,9 +374,7 @@ pub(super) async fn deactivate_all(&self, no_leave_rooms: bool, force: bool) ->
|
|||||||
.collect()
|
.collect()
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
full_user_deactivate(self.services, &user_id, &all_joined_rooms)
|
full_user_deactivate(self.services, &user_id, &all_joined_rooms).await?;
|
||||||
.boxed()
|
|
||||||
.await?;
|
|
||||||
update_displayname(self.services, &user_id, None, &all_joined_rooms).await;
|
update_displayname(self.services, &user_id, None, &all_joined_rooms).await;
|
||||||
update_avatar_url(self.services, &user_id, None, None, &all_joined_rooms)
|
update_avatar_url(self.services, &user_id, None, None, &all_joined_rooms)
|
||||||
.await;
|
.await;
|
||||||
@@ -764,7 +754,7 @@ pub(super) async fn force_demote(&self, user_id: String, room_id: OwnedRoomOrAli
|
|||||||
.build_and_append_pdu(
|
.build_and_append_pdu(
|
||||||
PduBuilder::state(String::new(), &power_levels_content),
|
PduBuilder::state(String::new(), &power_levels_content),
|
||||||
&user_id,
|
&user_id,
|
||||||
Some(&room_id),
|
&room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
@@ -784,11 +774,7 @@ pub(super) async fn make_user_admin(&self, user_id: String) -> Result {
|
|||||||
"Parsed user_id must be a local user"
|
"Parsed user_id must be a local user"
|
||||||
);
|
);
|
||||||
|
|
||||||
self.services
|
self.services.admin.make_user_admin(&user_id).await?;
|
||||||
.admin
|
|
||||||
.make_user_admin(&user_id)
|
|
||||||
.boxed()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
self.write_str(&format!("{user_id} has been granted admin privileges.",))
|
self.write_str(&format!("{user_id} has been granted admin privileges.",))
|
||||||
.await
|
.await
|
||||||
@@ -913,13 +899,7 @@ pub(super) async fn redact_event(&self, event_id: OwnedEventId) -> Result {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let redaction_event_id = {
|
let redaction_event_id = {
|
||||||
let state_lock = self
|
let state_lock = self.services.rooms.state.mutex.lock(event.room_id()).await;
|
||||||
.services
|
|
||||||
.rooms
|
|
||||||
.state
|
|
||||||
.mutex
|
|
||||||
.lock(&event.room_id_or_hash())
|
|
||||||
.await;
|
|
||||||
|
|
||||||
self.services
|
self.services
|
||||||
.rooms
|
.rooms
|
||||||
@@ -933,7 +913,7 @@ pub(super) async fn redact_event(&self, event_id: OwnedEventId) -> Result {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
event.sender(),
|
event.sender(),
|
||||||
Some(&event.room_id_or_hash()),
|
event.room_id(),
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?
|
.await?
|
||||||
@@ -944,29 +924,3 @@ pub(super) async fn redact_event(&self, event_id: OwnedEventId) -> Result {
|
|||||||
))
|
))
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
#[admin_command]
|
|
||||||
pub(super) async fn force_leave_remote_room(
|
|
||||||
&self,
|
|
||||||
user_id: String,
|
|
||||||
room_id: OwnedRoomOrAliasId,
|
|
||||||
) -> Result {
|
|
||||||
let user_id = parse_local_user_id(self.services, &user_id)?;
|
|
||||||
let (room_id, _) = self
|
|
||||||
.services
|
|
||||||
.rooms
|
|
||||||
.alias
|
|
||||||
.resolve_with_servers(&room_id, None)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
assert!(
|
|
||||||
self.services.globals.user_is_local(&user_id),
|
|
||||||
"Parsed user_id must be a local user"
|
|
||||||
);
|
|
||||||
remote_leave_room(self.services, &user_id, &room_id, None)
|
|
||||||
.boxed()
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
self.write_str(&format!("{user_id} has been joined to {room_id}.",))
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -103,12 +103,6 @@ pub enum UserCommand {
|
|||||||
room_id: OwnedRoomOrAliasId,
|
room_id: OwnedRoomOrAliasId,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// - Manually leave a remote room for a local user.
|
|
||||||
ForceLeaveRemoteRoom {
|
|
||||||
user_id: String,
|
|
||||||
room_id: OwnedRoomOrAliasId,
|
|
||||||
},
|
|
||||||
|
|
||||||
/// - Forces the specified user to drop their power levels to the room
|
/// - Forces the specified user to drop their power levels to the room
|
||||||
/// default, if their permissions allow and the auth check permits
|
/// default, if their permissions allow and the auth check permits
|
||||||
ForceDemote {
|
ForceDemote {
|
||||||
|
|||||||
@@ -49,9 +49,6 @@ jemalloc_stats = [
|
|||||||
"conduwuit-core/jemalloc_stats",
|
"conduwuit-core/jemalloc_stats",
|
||||||
"conduwuit-service/jemalloc_stats",
|
"conduwuit-service/jemalloc_stats",
|
||||||
]
|
]
|
||||||
ldap = [
|
|
||||||
"conduwuit-service/ldap"
|
|
||||||
]
|
|
||||||
release_max_log_level = [
|
release_max_log_level = [
|
||||||
"conduwuit-core/release_max_log_level",
|
"conduwuit-core/release_max_log_level",
|
||||||
"conduwuit-service/release_max_log_level",
|
"conduwuit-service/release_max_log_level",
|
||||||
@@ -93,7 +90,6 @@ serde.workspace = true
|
|||||||
sha1.workspace = true
|
sha1.workspace = true
|
||||||
tokio.workspace = true
|
tokio.workspace = true
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
ctor.workspace = true
|
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|||||||
+36
-32
@@ -373,7 +373,7 @@ pub(crate) async fn register_route(
|
|||||||
let password = if is_guest { None } else { body.password.as_deref() };
|
let password = if is_guest { None } else { body.password.as_deref() };
|
||||||
|
|
||||||
// Create user
|
// Create user
|
||||||
services.users.create(&user_id, password, None).await?;
|
services.users.create(&user_id, password)?;
|
||||||
|
|
||||||
// Default to pretty displayname
|
// Default to pretty displayname
|
||||||
let mut displayname = user_id.localpart().to_owned();
|
let mut displayname = user_id.localpart().to_owned();
|
||||||
@@ -405,36 +405,41 @@ pub(crate) async fn register_route(
|
|||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
// Generate new device id if the user didn't specify one
|
if (!is_guest && body.inhibit_login)
|
||||||
let no_device = body.inhibit_login
|
|
||||||
|| body
|
|| body
|
||||||
.appservice_info
|
.appservice_info
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.is_some_and(|aps| aps.registration.device_management);
|
.is_some_and(|appservice| appservice.registration.device_management)
|
||||||
let (token, device) = if !no_device {
|
{
|
||||||
// Don't create a device for inhibited logins
|
return Ok(register::v3::Response {
|
||||||
let device_id = if is_guest { None } else { body.device_id.clone() }
|
access_token: None,
|
||||||
.unwrap_or_else(|| utils::random_string(DEVICE_ID_LENGTH).into());
|
user_id,
|
||||||
|
device_id: None,
|
||||||
|
refresh_token: None,
|
||||||
|
expires_in: None,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// Generate new token for the device
|
// Generate new device id if the user didn't specify one
|
||||||
let new_token = utils::random_string(TOKEN_LENGTH);
|
let device_id = if is_guest { None } else { body.device_id.clone() }
|
||||||
|
.unwrap_or_else(|| utils::random_string(DEVICE_ID_LENGTH).into());
|
||||||
|
|
||||||
// Create device for this account
|
// Generate new token for the device
|
||||||
services
|
let token = utils::random_string(TOKEN_LENGTH);
|
||||||
.users
|
|
||||||
.create_device(
|
// Create device for this account
|
||||||
&user_id,
|
services
|
||||||
&device_id,
|
.users
|
||||||
&new_token,
|
.create_device(
|
||||||
body.initial_device_display_name.clone(),
|
&user_id,
|
||||||
Some(client.to_string()),
|
&device_id,
|
||||||
)
|
&token,
|
||||||
.await?;
|
body.initial_device_display_name.clone(),
|
||||||
debug_info!(%user_id, %device_id, "User account was created");
|
Some(client.to_string()),
|
||||||
(Some(new_token), Some(device_id))
|
)
|
||||||
} else {
|
.await?;
|
||||||
(None, None)
|
|
||||||
};
|
debug_info!(%user_id, %device_id, "User account was created");
|
||||||
|
|
||||||
let device_display_name = body.initial_device_display_name.as_deref().unwrap_or("");
|
let device_display_name = body.initial_device_display_name.as_deref().unwrap_or("");
|
||||||
|
|
||||||
@@ -500,7 +505,7 @@ pub(crate) async fn register_route(
|
|||||||
.await
|
.await
|
||||||
.is_ok_and(is_equal_to!(1))
|
.is_ok_and(is_equal_to!(1))
|
||||||
{
|
{
|
||||||
services.admin.make_user_admin(&user_id).boxed().await?;
|
services.admin.make_user_admin(&user_id).await?;
|
||||||
warn!("Granting {user_id} admin privileges as the first user");
|
warn!("Granting {user_id} admin privileges as the first user");
|
||||||
} else if services.config.suspend_on_register {
|
} else if services.config.suspend_on_register {
|
||||||
// This is not an admin, suspend them.
|
// This is not an admin, suspend them.
|
||||||
@@ -578,9 +583,9 @@ pub(crate) async fn register_route(
|
|||||||
}
|
}
|
||||||
|
|
||||||
Ok(register::v3::Response {
|
Ok(register::v3::Response {
|
||||||
access_token: token,
|
access_token: Some(token),
|
||||||
user_id,
|
user_id,
|
||||||
device_id: device,
|
device_id: Some(device_id),
|
||||||
refresh_token: None,
|
refresh_token: None,
|
||||||
expires_in: None,
|
expires_in: None,
|
||||||
})
|
})
|
||||||
@@ -654,8 +659,7 @@ pub(crate) async fn change_password_route(
|
|||||||
|
|
||||||
services
|
services
|
||||||
.users
|
.users
|
||||||
.set_password(sender_user, Some(&body.new_password))
|
.set_password(sender_user, Some(&body.new_password))?;
|
||||||
.await?;
|
|
||||||
|
|
||||||
if body.logout_devices {
|
if body.logout_devices {
|
||||||
// Logout all devices except the current one
|
// Logout all devices except the current one
|
||||||
@@ -924,7 +928,7 @@ pub async fn full_user_deactivate(
|
|||||||
.build_and_append_pdu(
|
.build_and_append_pdu(
|
||||||
PduBuilder::state(String::new(), &power_levels_content),
|
PduBuilder::state(String::new(), &power_levels_content),
|
||||||
user_id,
|
user_id,
|
||||||
Some(room_id),
|
room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
mod suspend;
|
|
||||||
|
|
||||||
pub(crate) use self::suspend::*;
|
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
use axum::extract::State;
|
|
||||||
use conduwuit::{Err, Result};
|
|
||||||
use futures::future::{join, join3};
|
|
||||||
use ruma::api::client::admin::{get_suspended, set_suspended};
|
|
||||||
|
|
||||||
use crate::Ruma;
|
|
||||||
|
|
||||||
/// # `GET /_matrix/client/v1/admin/suspend/{userId}`
|
|
||||||
///
|
|
||||||
/// Check the suspension status of a target user
|
|
||||||
pub(crate) async fn get_suspended_status(
|
|
||||||
State(services): State<crate::State>,
|
|
||||||
body: Ruma<get_suspended::v1::Request>,
|
|
||||||
) -> Result<get_suspended::v1::Response> {
|
|
||||||
let sender_user = body.sender_user();
|
|
||||||
|
|
||||||
let (admin, active) =
|
|
||||||
join(services.users.is_admin(sender_user), services.users.is_active(&body.user_id)).await;
|
|
||||||
if !admin {
|
|
||||||
return Err!(Request(Forbidden("Only server administrators can use this endpoint")));
|
|
||||||
}
|
|
||||||
if !services.globals.user_is_local(&body.user_id) {
|
|
||||||
return Err!(Request(InvalidParam("Can only check the suspended status of local users")));
|
|
||||||
}
|
|
||||||
if !active {
|
|
||||||
return Err!(Request(NotFound("Unknown user")));
|
|
||||||
}
|
|
||||||
Ok(get_suspended::v1::Response::new(
|
|
||||||
services.users.is_suspended(&body.user_id).await?,
|
|
||||||
))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// # `PUT /_matrix/client/v1/admin/suspend/{userId}`
|
|
||||||
///
|
|
||||||
/// Set the suspension status of a target user
|
|
||||||
pub(crate) async fn put_suspended_status(
|
|
||||||
State(services): State<crate::State>,
|
|
||||||
body: Ruma<set_suspended::v1::Request>,
|
|
||||||
) -> Result<set_suspended::v1::Response> {
|
|
||||||
let sender_user = body.sender_user();
|
|
||||||
|
|
||||||
let (sender_admin, active, target_admin) = join3(
|
|
||||||
services.users.is_admin(sender_user),
|
|
||||||
services.users.is_active(&body.user_id),
|
|
||||||
services.users.is_admin(&body.user_id),
|
|
||||||
)
|
|
||||||
.await;
|
|
||||||
|
|
||||||
if !sender_admin {
|
|
||||||
return Err!(Request(Forbidden("Only server administrators can use this endpoint")));
|
|
||||||
}
|
|
||||||
if !services.globals.user_is_local(&body.user_id) {
|
|
||||||
return Err!(Request(InvalidParam("Can only set the suspended status of local users")));
|
|
||||||
}
|
|
||||||
if !active {
|
|
||||||
return Err!(Request(NotFound("Unknown user")));
|
|
||||||
}
|
|
||||||
if body.user_id == *sender_user {
|
|
||||||
return Err!(Request(Forbidden("You cannot suspend yourself")));
|
|
||||||
}
|
|
||||||
if target_admin {
|
|
||||||
return Err!(Request(Forbidden("You cannot suspend another server administrator")));
|
|
||||||
}
|
|
||||||
if services.users.is_suspended(&body.user_id).await? == body.suspended {
|
|
||||||
// No change
|
|
||||||
return Ok(set_suspended::v1::Response::new(body.suspended));
|
|
||||||
}
|
|
||||||
|
|
||||||
let action = if body.suspended {
|
|
||||||
services
|
|
||||||
.users
|
|
||||||
.suspend_account(&body.user_id, sender_user)
|
|
||||||
.await;
|
|
||||||
"suspended"
|
|
||||||
} else {
|
|
||||||
services.users.unsuspend_account(&body.user_id).await;
|
|
||||||
"unsuspended"
|
|
||||||
};
|
|
||||||
|
|
||||||
if services.config.admin_room_notices {
|
|
||||||
// Notify the admin room that an account has been un/suspended
|
|
||||||
services
|
|
||||||
.admin
|
|
||||||
.send_text(&format!("{} has been {} by {}.", body.user_id, action, sender_user))
|
|
||||||
.await;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(set_suspended::v1::Response::new(body.suspended))
|
|
||||||
}
|
|
||||||
@@ -19,7 +19,7 @@ use crate::Ruma;
|
|||||||
/// of this server.
|
/// of this server.
|
||||||
pub(crate) async fn get_capabilities_route(
|
pub(crate) async fn get_capabilities_route(
|
||||||
State(services): State<crate::State>,
|
State(services): State<crate::State>,
|
||||||
body: Ruma<get_capabilities::v3::Request>,
|
_body: Ruma<get_capabilities::v3::Request>,
|
||||||
) -> Result<get_capabilities::v3::Response> {
|
) -> Result<get_capabilities::v3::Response> {
|
||||||
let available: BTreeMap<RoomVersionId, RoomVersionStability> =
|
let available: BTreeMap<RoomVersionId, RoomVersionStability> =
|
||||||
Server::available_room_versions().collect();
|
Server::available_room_versions().collect();
|
||||||
@@ -45,14 +45,5 @@ pub(crate) async fn get_capabilities_route(
|
|||||||
json!({"enabled": services.config.forget_forced_upon_leave}),
|
json!({"enabled": services.config.forget_forced_upon_leave}),
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
if services
|
|
||||||
.users
|
|
||||||
.is_admin(body.sender_user.as_ref().unwrap())
|
|
||||||
.await
|
|
||||||
{
|
|
||||||
// Advertise suspension API
|
|
||||||
capabilities.set("uk.timedout.msc4323", json!({"suspend":true, "lock": false}))?;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(get_capabilities::v3::Response { capabilities })
|
Ok(get_capabilities::v3::Response { capabilities })
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ pub(crate) async fn get_context_route(
|
|||||||
|
|
||||||
let (base_id, base_pdu, visible) = try_join3(base_id, base_pdu, visible).await?;
|
let (base_id, base_pdu, visible) = try_join3(base_id, base_pdu, visible).await?;
|
||||||
|
|
||||||
if base_pdu.room_id_or_hash() != *room_id || base_pdu.event_id != *event_id {
|
if base_pdu.room_id != *room_id || base_pdu.event_id != *event_id {
|
||||||
return Err!(Request(NotFound("Base event not found.")));
|
return Err!(Request(NotFound("Base event not found.")));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,7 +130,7 @@ pub(crate) async fn get_context_route(
|
|||||||
let state_at = events_after
|
let state_at = events_after
|
||||||
.last()
|
.last()
|
||||||
.map(ref_at!(1))
|
.map(ref_at!(1))
|
||||||
.map_or_else(|| body.event_id.as_ref(), |pdu| pdu.event_id.as_ref());
|
.map_or(body.event_id.as_ref(), |pdu| pdu.event_id.as_ref());
|
||||||
|
|
||||||
let state_ids = services
|
let state_ids = services
|
||||||
.rooms
|
.rooms
|
||||||
|
|||||||
@@ -64,14 +64,10 @@ pub(crate) async fn create_content_route(
|
|||||||
media_id: &utils::random_string(MXC_LENGTH),
|
media_id: &utils::random_string(MXC_LENGTH),
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Err(e) = services
|
services
|
||||||
.media
|
.media
|
||||||
.create(mxc, Some(user), Some(&content_disposition), content_type, &body.file)
|
.create(mxc, Some(user), Some(&content_disposition), content_type, &body.file)
|
||||||
.await
|
.await?;
|
||||||
{
|
|
||||||
err!("Failed to save uploaded media: {e}");
|
|
||||||
return Err!(Request(Unknown("Failed to save uploaded media")));
|
|
||||||
}
|
|
||||||
|
|
||||||
let blurhash = body.generate_blurhash.then(|| {
|
let blurhash = body.generate_blurhash.then(|| {
|
||||||
services
|
services
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ pub(crate) async fn ban_user_route(
|
|||||||
..current_member_content
|
..current_member_content
|
||||||
}),
|
}),
|
||||||
sender_user,
|
sender_user,
|
||||||
Some(&body.room_id),
|
&body.room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|||||||
@@ -4,14 +4,11 @@ use conduwuit::{
|
|||||||
Err, Result, debug_error, err, info,
|
Err, Result, debug_error, err, info,
|
||||||
matrix::{event::gen_event_id_canonical_json, pdu::PduBuilder},
|
matrix::{event::gen_event_id_canonical_json, pdu::PduBuilder},
|
||||||
};
|
};
|
||||||
use futures::FutureExt;
|
use futures::{FutureExt, join};
|
||||||
use ruma::{
|
use ruma::{
|
||||||
OwnedServerName, RoomId, UserId,
|
OwnedServerName, RoomId, UserId,
|
||||||
api::{client::membership::invite_user, federation::membership::create_invite},
|
api::{client::membership::invite_user, federation::membership::create_invite},
|
||||||
events::{
|
events::room::member::{MembershipState, RoomMemberEventContent},
|
||||||
invite_permission_config::FilterLevel,
|
|
||||||
room::member::{MembershipState, RoomMemberEventContent},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
use service::Services;
|
use service::Services;
|
||||||
|
|
||||||
@@ -50,21 +47,22 @@ pub(crate) async fn invite_user_route(
|
|||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
match &body.recipient {
|
match &body.recipient {
|
||||||
| invite_user::v3::InvitationRecipient::UserId { user_id: recipient_user } => {
|
| invite_user::v3::InvitationRecipient::UserId { user_id } => {
|
||||||
let sender_filter_level = services
|
let sender_ignored_recipient = services.users.user_is_ignored(sender_user, user_id);
|
||||||
.users
|
let recipient_ignored_by_sender =
|
||||||
.invite_filter_level(recipient_user, sender_user)
|
services.users.user_is_ignored(user_id, sender_user);
|
||||||
.await;
|
|
||||||
|
|
||||||
if !matches!(sender_filter_level, FilterLevel::Allow) {
|
let (sender_ignored_recipient, recipient_ignored_by_sender) =
|
||||||
// drop invites if the sender has the recipient filtered
|
join!(sender_ignored_recipient, recipient_ignored_by_sender);
|
||||||
|
|
||||||
|
if sender_ignored_recipient {
|
||||||
return Ok(invite_user::v3::Response {});
|
return Ok(invite_user::v3::Response {});
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Ok(target_user_membership) = services
|
if let Ok(target_user_membership) = services
|
||||||
.rooms
|
.rooms
|
||||||
.state_accessor
|
.state_accessor
|
||||||
.get_member(&body.room_id, recipient_user)
|
.get_member(&body.room_id, user_id)
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
if target_user_membership.membership == MembershipState::Ban {
|
if target_user_membership.membership == MembershipState::Ban {
|
||||||
@@ -72,27 +70,16 @@ pub(crate) async fn invite_user_route(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// check for blocked invites if the recipient is a local user.
|
if recipient_ignored_by_sender {
|
||||||
if services.globals.user_is_local(recipient_user) {
|
// silently drop the invite to the recipient if they've been ignored by the
|
||||||
let recipient_filter_level = services
|
// sender, pretend it worked
|
||||||
.users
|
return Ok(invite_user::v3::Response {});
|
||||||
.invite_filter_level(sender_user, recipient_user)
|
|
||||||
.await;
|
|
||||||
|
|
||||||
// ignored invites aren't handled here
|
|
||||||
// since the recipient's membership should still be changed to `invite`.
|
|
||||||
// they're filtered out in the individual /sync handlers.
|
|
||||||
if matches!(recipient_filter_level, FilterLevel::Block) {
|
|
||||||
return Err!(Request(InviteBlocked(
|
|
||||||
"{recipient_user} has blocked invites from you."
|
|
||||||
)));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
invite_helper(
|
invite_helper(
|
||||||
&services,
|
&services,
|
||||||
sender_user,
|
sender_user,
|
||||||
recipient_user,
|
user_id,
|
||||||
&body.room_id,
|
&body.room_id,
|
||||||
body.reason.clone(),
|
body.reason.clone(),
|
||||||
false,
|
false,
|
||||||
@@ -111,7 +98,7 @@ pub(crate) async fn invite_user_route(
|
|||||||
pub(crate) async fn invite_helper(
|
pub(crate) async fn invite_helper(
|
||||||
services: &Services,
|
services: &Services,
|
||||||
sender_user: &UserId,
|
sender_user: &UserId,
|
||||||
recipient_user: &UserId,
|
user_id: &UserId,
|
||||||
room_id: &RoomId,
|
room_id: &RoomId,
|
||||||
reason: Option<String>,
|
reason: Option<String>,
|
||||||
is_direct: bool,
|
is_direct: bool,
|
||||||
@@ -124,12 +111,12 @@ pub(crate) async fn invite_helper(
|
|||||||
return Err!(Request(Forbidden("Invites are not allowed on this server.")));
|
return Err!(Request(Forbidden("Invites are not allowed on this server.")));
|
||||||
}
|
}
|
||||||
|
|
||||||
if !services.globals.user_is_local(recipient_user) {
|
if !services.globals.user_is_local(user_id) {
|
||||||
let (pdu, pdu_json, invite_room_state) = {
|
let (pdu, pdu_json, invite_room_state) = {
|
||||||
let state_lock = services.rooms.state.mutex.lock(room_id).await;
|
let state_lock = services.rooms.state.mutex.lock(room_id).await;
|
||||||
|
|
||||||
let content = RoomMemberEventContent {
|
let content = RoomMemberEventContent {
|
||||||
avatar_url: services.users.avatar_url(recipient_user).await.ok(),
|
avatar_url: services.users.avatar_url(user_id).await.ok(),
|
||||||
is_direct: Some(is_direct),
|
is_direct: Some(is_direct),
|
||||||
reason,
|
reason,
|
||||||
..RoomMemberEventContent::new(MembershipState::Invite)
|
..RoomMemberEventContent::new(MembershipState::Invite)
|
||||||
@@ -139,14 +126,14 @@ pub(crate) async fn invite_helper(
|
|||||||
.rooms
|
.rooms
|
||||||
.timeline
|
.timeline
|
||||||
.create_hash_and_sign_event(
|
.create_hash_and_sign_event(
|
||||||
PduBuilder::state(recipient_user.to_string(), &content),
|
PduBuilder::state(user_id.to_string(), &content),
|
||||||
sender_user,
|
sender_user,
|
||||||
Some(room_id),
|
room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let invite_room_state = services.rooms.state.summary_stripped(&pdu, room_id).await;
|
let invite_room_state = services.rooms.state.summary_stripped(&pdu).await;
|
||||||
|
|
||||||
drop(state_lock);
|
drop(state_lock);
|
||||||
|
|
||||||
@@ -157,7 +144,7 @@ pub(crate) async fn invite_helper(
|
|||||||
|
|
||||||
let response = services
|
let response = services
|
||||||
.sending
|
.sending
|
||||||
.send_federation_request(recipient_user.server_name(), create_invite::v2::Request {
|
.send_federation_request(user_id.server_name(), create_invite::v2::Request {
|
||||||
room_id: room_id.to_owned(),
|
room_id: room_id.to_owned(),
|
||||||
event_id: (*pdu.event_id).to_owned(),
|
event_id: (*pdu.event_id).to_owned(),
|
||||||
room_version: room_version_id.clone(),
|
room_version: room_version_id.clone(),
|
||||||
@@ -186,7 +173,7 @@ pub(crate) async fn invite_helper(
|
|||||||
return Err!(Request(BadJson(warn!(
|
return Err!(Request(BadJson(warn!(
|
||||||
%pdu.event_id, %event_id,
|
%pdu.event_id, %event_id,
|
||||||
"Server {} sent event with wrong event ID",
|
"Server {} sent event with wrong event ID",
|
||||||
recipient_user.server_name()
|
user_id.server_name()
|
||||||
))));
|
))));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -226,9 +213,9 @@ pub(crate) async fn invite_helper(
|
|||||||
let state_lock = services.rooms.state.mutex.lock(room_id).await;
|
let state_lock = services.rooms.state.mutex.lock(room_id).await;
|
||||||
|
|
||||||
let content = RoomMemberEventContent {
|
let content = RoomMemberEventContent {
|
||||||
displayname: services.users.displayname(recipient_user).await.ok(),
|
displayname: services.users.displayname(user_id).await.ok(),
|
||||||
avatar_url: services.users.avatar_url(recipient_user).await.ok(),
|
avatar_url: services.users.avatar_url(user_id).await.ok(),
|
||||||
blurhash: services.users.blurhash(recipient_user).await.ok(),
|
blurhash: services.users.blurhash(user_id).await.ok(),
|
||||||
is_direct: Some(is_direct),
|
is_direct: Some(is_direct),
|
||||||
reason,
|
reason,
|
||||||
..RoomMemberEventContent::new(MembershipState::Invite)
|
..RoomMemberEventContent::new(MembershipState::Invite)
|
||||||
@@ -238,9 +225,9 @@ pub(crate) async fn invite_helper(
|
|||||||
.rooms
|
.rooms
|
||||||
.timeline
|
.timeline
|
||||||
.build_and_append_pdu(
|
.build_and_append_pdu(
|
||||||
PduBuilder::state(recipient_user.to_string(), &content),
|
PduBuilder::state(user_id.to_string(), &content),
|
||||||
sender_user,
|
sender_user,
|
||||||
Some(room_id),
|
room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ use conduwuit::{
|
|||||||
},
|
},
|
||||||
warn,
|
warn,
|
||||||
};
|
};
|
||||||
use futures::{FutureExt, StreamExt, TryFutureExt};
|
use futures::{FutureExt, StreamExt};
|
||||||
use ruma::{
|
use ruma::{
|
||||||
CanonicalJsonObject, CanonicalJsonValue, OwnedRoomId, OwnedServerName, OwnedUserId, RoomId,
|
CanonicalJsonObject, CanonicalJsonValue, OwnedRoomId, OwnedServerName, OwnedUserId, RoomId,
|
||||||
RoomVersionId, UserId,
|
RoomVersionId, UserId,
|
||||||
@@ -156,34 +156,31 @@ pub(crate) async fn join_room_by_id_or_alias_route(
|
|||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let mut servers = body.via.clone();
|
let mut servers = body.via.clone();
|
||||||
if servers.is_empty() {
|
servers.extend(
|
||||||
debug!("No via servers provided for join, injecting some.");
|
services
|
||||||
servers.extend(
|
.rooms
|
||||||
services
|
.state_cache
|
||||||
.rooms
|
.servers_invite_via(&room_id)
|
||||||
.state_cache
|
.map(ToOwned::to_owned)
|
||||||
.servers_invite_via(&room_id)
|
.collect::<Vec<_>>()
|
||||||
.map(ToOwned::to_owned)
|
.await,
|
||||||
.collect::<Vec<_>>()
|
);
|
||||||
.await,
|
|
||||||
);
|
|
||||||
|
|
||||||
servers.extend(
|
servers.extend(
|
||||||
services
|
services
|
||||||
.rooms
|
.rooms
|
||||||
.state_cache
|
.state_cache
|
||||||
.invite_state(sender_user, &room_id)
|
.invite_state(sender_user, &room_id)
|
||||||
.await
|
.await
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|event| event.get_field("sender").ok().flatten())
|
.filter_map(|event| event.get_field("sender").ok().flatten())
|
||||||
.filter_map(|sender: &str| UserId::parse(sender).ok())
|
.filter_map(|sender: &str| UserId::parse(sender).ok())
|
||||||
.map(|user| user.server_name().to_owned()),
|
.map(|user| user.server_name().to_owned()),
|
||||||
);
|
);
|
||||||
|
|
||||||
if let Some(server) = room_id.server_name() {
|
if let Some(server) = room_id.server_name() {
|
||||||
servers.push(server.to_owned());
|
servers.push(server.to_owned());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
servers.sort_unstable();
|
servers.sort_unstable();
|
||||||
@@ -313,14 +310,11 @@ pub async fn join_room_by_id_helper(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !server_in_room && servers.is_empty() {
|
let local_join = server_in_room
|
||||||
return Err!(Request(NotFound(
|
|| servers.is_empty()
|
||||||
"No servers were provided to assist in joining the room remotely, and we are not \
|
|| (servers.len() == 1 && services.globals.server_is_ours(&servers[0]));
|
||||||
already participating in the room."
|
|
||||||
)));
|
|
||||||
}
|
|
||||||
|
|
||||||
if server_in_room {
|
if local_join {
|
||||||
join_room_by_id_helper_local(
|
join_room_by_id_helper_local(
|
||||||
services,
|
services,
|
||||||
sender_user,
|
sender_user,
|
||||||
@@ -559,10 +553,6 @@ async fn join_room_by_id_helper_remote(
|
|||||||
services
|
services
|
||||||
.server_keys
|
.server_keys
|
||||||
.validate_and_add_event_id_no_fetch(pdu, &room_version_id)
|
.validate_and_add_event_id_no_fetch(pdu, &room_version_id)
|
||||||
.inspect_err(|e| {
|
|
||||||
debug_warn!("Could not validate send_join response room_state event: {e:?}");
|
|
||||||
})
|
|
||||||
.inspect(|_| debug!("Completed validating send_join response room_state event"))
|
|
||||||
})
|
})
|
||||||
.ready_filter_map(Result::ok)
|
.ready_filter_map(Result::ok)
|
||||||
.fold(HashMap::new(), |mut state, (event_id, value)| async move {
|
.fold(HashMap::new(), |mut state, (event_id, value)| async move {
|
||||||
@@ -573,6 +563,7 @@ async fn join_room_by_id_helper_remote(
|
|||||||
return state;
|
return state;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
services.rooms.outlier.add_pdu_outlier(&event_id, &value);
|
services.rooms.outlier.add_pdu_outlier(&event_id, &value);
|
||||||
if let Some(state_key) = &pdu.state_key {
|
if let Some(state_key) = &pdu.state_key {
|
||||||
let shortstatekey = services
|
let shortstatekey = services
|
||||||
@@ -583,6 +574,7 @@ async fn join_room_by_id_helper_remote(
|
|||||||
|
|
||||||
state.insert(shortstatekey, pdu.event_id.clone());
|
state.insert(shortstatekey, pdu.event_id.clone());
|
||||||
}
|
}
|
||||||
|
|
||||||
state
|
state
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
@@ -603,7 +595,6 @@ async fn join_room_by_id_helper_remote(
|
|||||||
})
|
})
|
||||||
.ready_filter_map(Result::ok)
|
.ready_filter_map(Result::ok)
|
||||||
.ready_for_each(|(event_id, value)| {
|
.ready_for_each(|(event_id, value)| {
|
||||||
trace!(%event_id, "Adding PDU as an outlier from send_join auth_chain");
|
|
||||||
services.rooms.outlier.add_pdu_outlier(&event_id, &value);
|
services.rooms.outlier.add_pdu_outlier(&event_id, &value);
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
@@ -624,9 +615,6 @@ async fn join_room_by_id_helper_remote(
|
|||||||
&parsed_join_pdu,
|
&parsed_join_pdu,
|
||||||
None, // TODO: third party invite
|
None, // TODO: third party invite
|
||||||
|k, s| state_fetch(k.clone(), s.into()),
|
|k, s| state_fetch(k.clone(), s.into()),
|
||||||
&state_fetch(StateEventType::RoomCreate, "".into())
|
|
||||||
.await
|
|
||||||
.expect("create event is missing from send_join auth"),
|
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map_err(|e| err!(Request(Forbidden(warn!("Auth check failed: {e:?}")))))?;
|
.map_err(|e| err!(Request(Forbidden(warn!("Auth check failed: {e:?}")))))?;
|
||||||
@@ -661,7 +649,7 @@ async fn join_room_by_id_helper_remote(
|
|||||||
.force_state(room_id, statehash_before_join, added, removed, &state_lock)
|
.force_state(room_id, statehash_before_join, added, removed, &state_lock)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
debug!("Updating joined counts for new room");
|
info!("Updating joined counts for new room");
|
||||||
services
|
services
|
||||||
.rooms
|
.rooms
|
||||||
.state_cache
|
.state_cache
|
||||||
@@ -674,7 +662,7 @@ async fn join_room_by_id_helper_remote(
|
|||||||
let statehash_after_join = services
|
let statehash_after_join = services
|
||||||
.rooms
|
.rooms
|
||||||
.state
|
.state
|
||||||
.append_to_state(&parsed_join_pdu, room_id)
|
.append_to_state(&parsed_join_pdu)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
info!("Appending new room join event");
|
info!("Appending new room join event");
|
||||||
@@ -686,7 +674,6 @@ async fn join_room_by_id_helper_remote(
|
|||||||
join_event,
|
join_event,
|
||||||
once(parsed_join_pdu.event_id.borrow()),
|
once(parsed_join_pdu.event_id.borrow()),
|
||||||
&state_lock,
|
&state_lock,
|
||||||
room_id,
|
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
@@ -742,7 +729,6 @@ async fn join_room_by_id_helper_local(
|
|||||||
.iter()
|
.iter()
|
||||||
.stream()
|
.stream()
|
||||||
.any(|restriction_room_id| {
|
.any(|restriction_room_id| {
|
||||||
trace!("Checking if {sender_user} is joined to {restriction_room_id}");
|
|
||||||
services
|
services
|
||||||
.rooms
|
.rooms
|
||||||
.state_cache
|
.state_cache
|
||||||
@@ -755,7 +741,6 @@ async fn join_room_by_id_helper_local(
|
|||||||
.state_cache
|
.state_cache
|
||||||
.local_users_in_room(room_id)
|
.local_users_in_room(room_id)
|
||||||
.filter(|user| {
|
.filter(|user| {
|
||||||
trace!("Checking if {user} can invite {sender_user} to {room_id}");
|
|
||||||
services.rooms.state_accessor.user_can_invite(
|
services.rooms.state_accessor.user_can_invite(
|
||||||
room_id,
|
room_id,
|
||||||
user,
|
user,
|
||||||
@@ -768,7 +753,6 @@ async fn join_room_by_id_helper_local(
|
|||||||
.await
|
.await
|
||||||
.map(ToOwned::to_owned)
|
.map(ToOwned::to_owned)
|
||||||
} else {
|
} else {
|
||||||
trace!("No restriction rooms are joined by {sender_user}");
|
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -789,7 +773,7 @@ async fn join_room_by_id_helper_local(
|
|||||||
.build_and_append_pdu(
|
.build_and_append_pdu(
|
||||||
PduBuilder::state(sender_user.to_string(), &content),
|
PduBuilder::state(sender_user.to_string(), &content),
|
||||||
sender_user,
|
sender_user,
|
||||||
Some(room_id),
|
room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ pub(crate) async fn kick_user_route(
|
|||||||
..event
|
..event
|
||||||
}),
|
}),
|
||||||
sender_user,
|
sender_user,
|
||||||
Some(&body.room_id),
|
&body.room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|||||||
@@ -373,7 +373,7 @@ async fn knock_room_helper_local(
|
|||||||
.build_and_append_pdu(
|
.build_and_append_pdu(
|
||||||
PduBuilder::state(sender_user.to_string(), &content),
|
PduBuilder::state(sender_user.to_string(), &content),
|
||||||
sender_user,
|
sender_user,
|
||||||
Some(room_id),
|
room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
@@ -502,7 +502,6 @@ async fn knock_room_helper_local(
|
|||||||
knock_event,
|
knock_event,
|
||||||
once(parsed_knock_pdu.event_id.borrow()),
|
once(parsed_knock_pdu.event_id.borrow()),
|
||||||
&state_lock,
|
&state_lock,
|
||||||
room_id,
|
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
@@ -673,7 +672,7 @@ async fn knock_room_helper_remote(
|
|||||||
let statehash_after_knock = services
|
let statehash_after_knock = services
|
||||||
.rooms
|
.rooms
|
||||||
.state
|
.state
|
||||||
.append_to_state(&parsed_knock_pdu, room_id)
|
.append_to_state(&parsed_knock_pdu)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
info!("Updating membership locally to knock state with provided stripped state events");
|
info!("Updating membership locally to knock state with provided stripped state events");
|
||||||
@@ -702,7 +701,6 @@ async fn knock_room_helper_remote(
|
|||||||
knock_event,
|
knock_event,
|
||||||
once(parsed_knock_pdu.event_id.borrow()),
|
once(parsed_knock_pdu.event_id.borrow()),
|
||||||
&state_lock,
|
&state_lock,
|
||||||
room_id,
|
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
|||||||
@@ -206,7 +206,7 @@ pub async fn leave_room(
|
|||||||
..event
|
..event
|
||||||
}),
|
}),
|
||||||
user_id,
|
user_id,
|
||||||
Some(room_id),
|
room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
@@ -215,7 +215,7 @@ pub async fn leave_room(
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn remote_leave_room(
|
async fn remote_leave_room(
|
||||||
services: &Services,
|
services: &Services,
|
||||||
user_id: &UserId,
|
user_id: &UserId,
|
||||||
room_id: &RoomId,
|
room_id: &RoomId,
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ pub(crate) use self::{
|
|||||||
};
|
};
|
||||||
pub use self::{
|
pub use self::{
|
||||||
join::join_room_by_id_helper,
|
join::join_room_by_id_helper,
|
||||||
leave::{leave_all_rooms, leave_room, remote_leave_room},
|
leave::{leave_all_rooms, leave_room},
|
||||||
};
|
};
|
||||||
use crate::{Ruma, client::full_user_deactivate};
|
use crate::{Ruma, client::full_user_deactivate};
|
||||||
|
|
||||||
@@ -69,11 +69,11 @@ pub(crate) async fn banned_room_check(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if let Some(room_id) = room_id {
|
if let Some(room_id) = room_id {
|
||||||
let room_banned = services.rooms.metadata.is_banned(room_id).await;
|
if services.rooms.metadata.is_banned(room_id).await
|
||||||
let server_banned = room_id.server_name().is_some_and(|server_name| {
|
|| services
|
||||||
services.moderation.is_remote_server_forbidden(server_name)
|
.moderation
|
||||||
});
|
.is_remote_server_forbidden(room_id.server_name().expect("legacy room mxid"))
|
||||||
if room_banned || server_banned {
|
{
|
||||||
warn!(
|
warn!(
|
||||||
"User {user_id} who is not an admin attempted to send an invite for or \
|
"User {user_id} who is not an admin attempted to send an invite for or \
|
||||||
attempted to join a banned room or banned room server name: {room_id}"
|
attempted to join a banned room or banned room server name: {room_id}"
|
||||||
@@ -106,6 +106,7 @@ pub(crate) async fn banned_room_check(
|
|||||||
.boxed()
|
.boxed()
|
||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Err!(Request(Forbidden("This room is banned on this homeserver.")));
|
return Err!(Request(Forbidden("This room is banned on this homeserver.")));
|
||||||
}
|
}
|
||||||
} else if let Some(server_name) = server_name {
|
} else if let Some(server_name) = server_name {
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ pub(crate) async fn unban_user_route(
|
|||||||
..current_member_content
|
..current_member_content
|
||||||
}),
|
}),
|
||||||
sender_user,
|
sender_user,
|
||||||
Some(&body.room_id),
|
&body.room_id,
|
||||||
&state_lock,
|
&state_lock,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
|
|||||||
+18
-51
@@ -8,7 +8,7 @@ use conduwuit::{
|
|||||||
ref_at,
|
ref_at,
|
||||||
utils::{
|
utils::{
|
||||||
IterStream, ReadyExt,
|
IterStream, ReadyExt,
|
||||||
result::LogErr,
|
result::{FlatOk, LogErr},
|
||||||
stream::{BroadbandExt, TryIgnore, WidebandExt},
|
stream::{BroadbandExt, TryIgnore, WidebandExt},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -30,7 +30,6 @@ use ruma::{
|
|||||||
events::{
|
events::{
|
||||||
AnyStateEvent, StateEventType,
|
AnyStateEvent, StateEventType,
|
||||||
TimelineEventType::{self, *},
|
TimelineEventType::{self, *},
|
||||||
invite_permission_config::FilterLevel,
|
|
||||||
},
|
},
|
||||||
serde::Raw,
|
serde::Raw,
|
||||||
};
|
};
|
||||||
@@ -92,7 +91,7 @@ pub(crate) async fn get_message_events_route(
|
|||||||
| Direction::Backward => PduCount::max(),
|
| Direction::Backward => PduCount::max(),
|
||||||
});
|
});
|
||||||
|
|
||||||
let to: Option<PduCount> = body.to.as_deref().map(str::parse).transpose()?;
|
let to: Option<PduCount> = body.to.as_deref().map(str::parse).flat_ok();
|
||||||
|
|
||||||
let limit: usize = body
|
let limit: usize = body
|
||||||
.limit
|
.limit
|
||||||
@@ -182,7 +181,7 @@ pub(crate) async fn get_message_events_route(
|
|||||||
|
|
||||||
Ok(get_message_events::v3::Response {
|
Ok(get_message_events::v3::Response {
|
||||||
start: from.to_string(),
|
start: from.to_string(),
|
||||||
end: next_token.as_ref().map(PduCount::to_string),
|
end: next_token.as_ref().map(ToString::to_string),
|
||||||
chunk,
|
chunk,
|
||||||
state,
|
state,
|
||||||
})
|
})
|
||||||
@@ -268,7 +267,7 @@ pub(crate) async fn ignored_filter(
|
|||||||
pub(crate) async fn is_ignored_pdu<Pdu>(
|
pub(crate) async fn is_ignored_pdu<Pdu>(
|
||||||
services: &Services,
|
services: &Services,
|
||||||
event: &Pdu,
|
event: &Pdu,
|
||||||
recipient_user: &UserId,
|
user_id: &UserId,
|
||||||
) -> bool
|
) -> bool
|
||||||
where
|
where
|
||||||
Pdu: Event + Send + Sync,
|
Pdu: Event + Send + Sync,
|
||||||
@@ -279,29 +278,20 @@ where
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
let sender_user = event.sender();
|
let ignored_type = IGNORED_MESSAGE_TYPES.binary_search(event.kind()).is_ok();
|
||||||
let type_ignored = IGNORED_MESSAGE_TYPES.binary_search(event.kind()).is_ok();
|
|
||||||
let server_ignored = services
|
let ignored_server = services
|
||||||
.moderation
|
.moderation
|
||||||
.is_remote_server_ignored(sender_user.server_name());
|
.is_remote_server_ignored(event.sender().server_name());
|
||||||
let user_ignored = services
|
|
||||||
.users
|
|
||||||
.user_is_ignored(sender_user, recipient_user)
|
|
||||||
.await;
|
|
||||||
|
|
||||||
if !type_ignored {
|
if ignored_type
|
||||||
// We cannot safely ignore this type
|
&& (ignored_server
|
||||||
return false;
|
|| (!services.config.send_messages_from_ignored_users_to_client
|
||||||
}
|
&& services
|
||||||
|
.users
|
||||||
if server_ignored {
|
.user_is_ignored(event.sender(), user_id)
|
||||||
// the sender's server is ignored, so ignore this event
|
.await))
|
||||||
return true;
|
{
|
||||||
}
|
|
||||||
|
|
||||||
if user_ignored && !services.config.send_messages_from_ignored_users_to_client {
|
|
||||||
// the recipient of this PDU has the sender ignored, and we're not
|
|
||||||
// configured to send ignored messages to clients
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -319,7 +309,7 @@ pub(crate) async fn visibility_filter(
|
|||||||
services
|
services
|
||||||
.rooms
|
.rooms
|
||||||
.state_accessor
|
.state_accessor
|
||||||
.user_can_see_event(user_id, &pdu.room_id_or_hash(), pdu.event_id())
|
.user_can_see_event(user_id, pdu.room_id(), pdu.event_id())
|
||||||
.await
|
.await
|
||||||
.then_some(item)
|
.then_some(item)
|
||||||
}
|
}
|
||||||
@@ -330,30 +320,7 @@ pub(crate) fn event_filter(item: PdusIterItem, filter: &RoomEventFilter) -> Opti
|
|||||||
filter.matches(pdu).then_some(item)
|
filter.matches(pdu).then_some(item)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[cfg_attr(debug_assertions, conduwuit::ctor)]
|
||||||
pub(crate) async fn is_ignored_invite(
|
|
||||||
services: &Services,
|
|
||||||
recipient_user: &UserId,
|
|
||||||
room_id: &RoomId,
|
|
||||||
) -> bool {
|
|
||||||
let Ok(sender_user) = services
|
|
||||||
.rooms
|
|
||||||
.state_cache
|
|
||||||
.invite_sender(recipient_user, room_id)
|
|
||||||
.await
|
|
||||||
else {
|
|
||||||
// the invite may have been sent before the invite_sender table existed.
|
|
||||||
// assume it's not ignored
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
|
|
||||||
services
|
|
||||||
.users
|
|
||||||
.invite_filter_level(&sender_user, recipient_user)
|
|
||||||
.await == FilterLevel::Ignore
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg_attr(debug_assertions, ctor::ctor)]
|
|
||||||
fn _is_sorted() {
|
fn _is_sorted() {
|
||||||
debug_assert!(
|
debug_assert!(
|
||||||
IGNORED_MESSAGE_TYPES.is_sorted(),
|
IGNORED_MESSAGE_TYPES.is_sorted(),
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user