-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into banned-links-fixed
- Loading branch information
Showing
483 changed files
with
47,704 additions
and
11,441 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
custom: "https://openvk.su/donate" | ||
custom: "https://ovk.to/donate" |
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 |
---|---|---|
|
@@ -2,11 +2,12 @@ name: Build base images | |
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
|
||
env: | ||
BASE_IMAGE_NAME: php | ||
BASE_IMAGE_VERSION: "8.1" | ||
BASE_IMAGE_VERSION: "8.2" | ||
|
||
jobs: | ||
build-cli: | ||
|
@@ -16,43 +17,55 @@ jobs: | |
- uses: actions/checkout@v3 | ||
with: | ||
lfs: false | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Change repository string to lowercase | ||
id: repositorystring | ||
uses: Entepotenz/[email protected] | ||
with: | ||
string: ${{ github.repository }} | ||
|
||
- name: Log into registry | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build cli image | ||
run: | | ||
IMAGE_NAME=ghcr.io/${{ github.repository }}/$BASE_IMAGE_NAME:$BASE_IMAGE_VERSION-cli | ||
IMAGE_NAME=ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$BASE_IMAGE_NAME:$BASE_IMAGE_VERSION-cli | ||
docker buildx build --platform linux/amd64,linux/arm64 -t $IMAGE_NAME . --push -f install/automated/docker/base-php-cli.Dockerfile --build-arg VERSION=$BASE_IMAGE_VERSION | ||
build-apache: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
lfs: false | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Change repository string to lowercase | ||
id: repositorystring | ||
uses: Entepotenz/[email protected] | ||
with: | ||
string: ${{ github.repository }} | ||
|
||
- name: Log into registry | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build apache image | ||
run: | | ||
IMAGE_NAME=ghcr.io/${{ github.repository }}/$BASE_IMAGE_NAME:$BASE_IMAGE_VERSION-apache | ||
IMAGE_NAME=ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/$BASE_IMAGE_NAME:$BASE_IMAGE_VERSION-apache | ||
docker buildx build --platform linux/amd64,linux/arm64 -t $IMAGE_NAME . --push -f install/automated/docker/base-php-apache.Dockerfile --build-arg VERSION=$BASE_IMAGE_VERSION |
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 |
---|---|---|
@@ -1,64 +1,154 @@ | ||
name: Build images | ||
|
||
on: | ||
push: | ||
# Publish `master` as Docker `latest` image. | ||
branches: | ||
- master | ||
|
||
# Publish `v1.2.3` tags as releases. | ||
tags: | ||
- v* | ||
on: [push, pull_request] | ||
|
||
env: | ||
BASE_IMAGE_NAME: openvk | ||
DB_IMAGE_NAME: mariadb | ||
EVENT_IMAGE_NAME: mariadb | ||
DB_VERSION: "10.9" | ||
BASE_IMAGE_NAME: openvk | ||
DB_IMAGE_NAME: mariadb | ||
EVENT_IMAGE_NAME: mariadb | ||
DB_VERSION: '10.9' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
arch: ['x86_64'] | ||
|
||
if: github.event_name == 'push' | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
lfs: false | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Log into registry | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build base image | ||
run: | | ||
IMAGE_ID=ghcr.io/${{ github.repository }}/$BASE_IMAGE_NAME | ||
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | ||
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | ||
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
[ "$VERSION" == "master" ] && VERSION=latest | ||
echo IMAGE_ID=$IMAGE_ID | ||
echo VERSION=$VERSION | ||
docker buildx build --platform linux/amd64,linux/arm64 -t $IMAGE_ID:$VERSION . --push -f install/automated/docker/openvk.Dockerfile --build-arg GITREPO=${{ github.repository }} | ||
- name: Build MariaDB primary image | ||
run: | | ||
IMAGE_NAME=ghcr.io/${{ github.repository }}/$DB_IMAGE_NAME:$DB_VERSION-primary | ||
docker buildx build --platform linux/amd64,linux/arm64 -t $IMAGE_NAME . --push -f install/automated/docker/mariadb-primary.Dockerfile --build-arg VERSION=$DB_VERSION | ||
- name: Build MariaDB event image | ||
run: | | ||
IMAGE_NAME=ghcr.io/${{ github.repository }}/$EVENT_IMAGE_NAME:$DB_VERSION-eventdb | ||
docker buildx build --platform linux/amd64,linux/arm64 -t $IMAGE_NAME . --push -f install/automated/docker/mariadb-eventdb.Dockerfile --build-arg VERSION=$DB_VERSION | ||
buildbase: | ||
name: Build base images | ||
|
||
runs-on: ubuntu-latest | ||
|
||
# 'push' runs on inner branches, 'pull_request' will run only on outer PRs | ||
if: > | ||
github.event_name == 'push' | ||
|| (github.event_name == 'pull_request' | ||
&& github.event.pull_request.head.repo.full_name != github.repository) | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
|
||
- name: Change repository string to lowercase | ||
id: repositorystring | ||
uses: Entepotenz/[email protected] | ||
with: | ||
string: ${{ github.repository }} | ||
|
||
- name: Base image meta | ||
id: basemeta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/${{env.BASE_IMAGE_NAME}} | ||
labels: | | ||
org.opencontainers.image.documentation=https://github.com/OpenVK/openvk/blob/master/install/automated/docker/Readme.md | ||
tags: | | ||
type=sha | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
type=ref,event=tag | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
- name: Log into registry | ||
if: github.event_name != 'pull_request' | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build base image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
file: install/automated/docker/openvk.Dockerfile | ||
tags: ${{ steps.basemeta.outputs.tags }} | ||
labels: ${{ steps.basemeta.outputs.labels }} | ||
push: ${{ github.event_name != 'pull_request' }} | ||
build-args: | | ||
GITREPO=${{ steps.repositorystring.outputs.lowercase }} | ||
builddb: | ||
name: Build DB images | ||
|
||
runs-on: ubuntu-latest | ||
|
||
# 'push' runs on inner branches, 'pull_request' will run only on outer PRs | ||
if: > | ||
github.event_name == 'push' | ||
|| (github.event_name == 'pull_request' | ||
&& github.event.pull_request.head.repo.full_name != github.repository) | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
|
||
- name: Change repository string to lowercase | ||
id: repositorystring | ||
uses: Entepotenz/[email protected] | ||
with: | ||
string: ${{ github.repository }} | ||
|
||
- name: MariaDB primary meta | ||
id: db-primarymeta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/${{env.DB_IMAGE_NAME}} | ||
labels: | | ||
org.opencontainers.image.title=OpenVK MariaDB (Primary) | ||
org.opencontainers.image.description=OpenVK's image for MariaDB for primary database. | ||
org.opencontainers.image.documentation=https://github.com/OpenVK/openvk/blob/master/install/automated/docker/Readme.md | ||
tags: | | ||
type=sha,prefix=${{env.DB_VERSION}}-primary-sha- | ||
type=ref,event=branch,prefix=${{env.DB_VERSION}}-primary- | ||
type=ref,event=pr,prefix=${{env.DB_VERSION}}-primary-pr- | ||
type=ref,event=tag,prefix=${{env.DB_VERSION}}-primary- | ||
type=raw,value=${{env.DB_VERSION}}-primary,enable={{is_default_branch}} | ||
- name: MariaDB event meta | ||
id: db-eventmeta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
ghcr.io/${{ steps.repositorystring.outputs.lowercase }}/${{env.DB_IMAGE_NAME}} | ||
labels: | | ||
org.opencontainers.image.title=OpenVK MariaDB (EventDB) | ||
org.opencontainers.image.description=OpenVK's image for MariaDB for event database. | ||
org.opencontainers.image.documentation=https://github.com/OpenVK/openvk/blob/master/install/automated/docker/Readme.md | ||
tags: | | ||
type=sha,prefix=${{env.DB_VERSION}}-eventdb-sha- | ||
type=ref,event=branch,prefix=${{env.DB_VERSION}}-eventdb- | ||
type=ref,event=pr,prefix=${{env.DB_VERSION}}-eventdb-pr- | ||
type=ref,event=tag,prefix=${{env.DB_VERSION}}-eventdb- | ||
type=raw,value=${{env.DB_VERSION}}-eventdb,enable={{is_default_branch}} | ||
- name: Log into registry | ||
if: github.event_name != 'pull_request' | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build MariaDB primary image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: ${{ github.event_name != 'pull_request' }} | ||
platforms: linux/amd64,linux/arm64 | ||
file: install/automated/docker/mariadb-primary.Dockerfile | ||
tags: ${{ steps.db-primarymeta.outputs.tags }} | ||
labels: ${{ steps.db-primarymeta.outputs.labels }} | ||
build-args: | | ||
VERSION=${{env.DB_VERSION}} | ||
- name: Build MariaDB event image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: ${{ github.event_name != 'pull_request' }} | ||
platforms: linux/amd64,linux/arm64 | ||
file: install/automated/docker/mariadb-eventdb.Dockerfile | ||
tags: ${{ steps.db-eventmeta.outputs.tags }} | ||
labels: ${{ steps.db-eventmeta.outputs.labels }} | ||
build-args: | | ||
VERSION=${{env.DB_VERSION}} |
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,35 @@ | ||
name: Lint | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-20.04 | ||
|
||
# 'push' runs on inner branches, 'pull_request' will run only on outer PRs | ||
if: > | ||
github.event_name == 'push' | ||
|| (github.event_name == 'pull_request' | ||
&& github.event.pull_request.head.repo.full_name != github.repository) | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Code Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "8.2" | ||
extensions: gd, zip, intl, yaml, pdo_mysql, rdkafka, imagick | ||
tools: composer:v2 | ||
coverage: none | ||
|
||
- name: Install dependencies | ||
run: composer install --no-interaction --no-progress --no-suggest --prefer-dist | ||
|
||
- name: PHP CS Fixer | ||
run: vendor/bin/php-cs-fixer fix --dry-run --diff |
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 |
---|---|---|
|
@@ -15,4 +15,5 @@ themepacks/* | |
storage/* | ||
!storage/.gitkeep | ||
|
||
.idea | ||
.idea | ||
.php-cs-fixer.cache |
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,15 @@ | ||
<?php | ||
|
||
$finder = (new PhpCsFixer\Finder()) | ||
->in(__DIR__) | ||
->name('openvkctl') | ||
; | ||
|
||
return (new PhpCsFixer\Config()) | ||
->setRules([ | ||
'@PER-CS2.0' => true, | ||
'@PHP82Migration' => true, | ||
]) | ||
->setFinder($finder) | ||
->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect()) | ||
; |
Oops, something went wrong.