forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from i544c-me/v2024.10.1-buiso.1
Bump Misskey to 2024.10.1
- Loading branch information
Showing
500 changed files
with
10,550 additions
and
3,613 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: true | ||
persist-credentials: false | ||
ref: refs/pull/${{ github.event.pull_request.number }}/merge | ||
|
||
- name: setup pnpm | ||
|
@@ -57,7 +58,7 @@ jobs: | |
name: generated-misskey-js | ||
path: packages/misskey-js/generator/built/autogen | ||
|
||
# pull_request_target safety: permissions: read-all, and there are no secrets used in this job | ||
# pull_request_target safety: permissions: read-all, and no user codes are executed | ||
get-actual-misskey-js: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
|
@@ -68,6 +69,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
submodules: true | ||
persist-credentials: false | ||
ref: refs/pull/${{ github.event.pull_request.number }}/merge | ||
|
||
- name: Upload From Merged | ||
|
@@ -131,3 +133,7 @@ jobs: | |
mode: delete | ||
message: "Thank you!" | ||
create_if_not_exists: false | ||
|
||
- name: Make failure if changes are detected | ||
if: steps.check-changes.outputs.changes == 'true' | ||
run: exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Test (federation) | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
paths: | ||
- packages/backend/** | ||
- packages/misskey-js/** | ||
- .github/workflows/test-federation.yml | ||
pull_request: | ||
paths: | ||
- packages/backend/** | ||
- packages/misskey-js/** | ||
- .github/workflows/test-federation.yml | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20.16.0] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
- name: Install FFmpeg | ||
uses: FedericoCarboni/setup-ffmpeg@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'pnpm' | ||
- name: Build Misskey | ||
run: | | ||
corepack enable && corepack prepare | ||
pnpm i --frozen-lockfile | ||
pnpm build | ||
- name: Setup | ||
run: | | ||
cd packages/backend/test-federation | ||
bash ./setup.sh | ||
sudo chmod 644 ./certificates/*.test.key | ||
- name: Start servers | ||
# https://github.com/docker/compose/issues/1294#issuecomment-374847206 | ||
run: | | ||
cd packages/backend/test-federation | ||
docker compose up -d --scale tester=0 | ||
- name: Test | ||
run: | | ||
cd packages/backend/test-federation | ||
docker compose run --no-deps tester | ||
- name: Stop servers | ||
run: | | ||
cd packages/backend/test-federation | ||
docker compose down |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Build and Push VRTL Misskey Docker Image | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*-vrtl.*' | ||
|
||
env: | ||
DOCKER_REGISTRY_NAME: ghcr.io | ||
DOCKER_IMAGE_NAME: anatawa12/vrtl-misskey | ||
|
||
jobs: | ||
build: | ||
permissions: | ||
contents: read | ||
packages: write | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
|
||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to Docker hub | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ${{ env.DOCKER_REGISTRY_NAME }} | ||
username: ${{ github.repository_owner }} | ||
password: ${{ github.token }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v3 | ||
with: | ||
images: ${{ env.DOCKER_REGISTRY_NAME }}/${{ env.DOCKER_IMAGE_NAME }} | ||
|
||
- name: Build & Push | ||
uses: docker/build-push-action@v2 | ||
env: | ||
DOCKER_BUILDKIT: 1 | ||
with: | ||
context: . | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: ${{ env.DOCKER_REGISTRY_NAME }}/${{ env.DOCKER_IMAGE_NAME }}:latest | ||
build-args: BUILDKIT_INLINE_CACHE=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.