-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
98 changed files
with
17,084 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.env | ||
.git | ||
.github | ||
docker | ||
target |
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 @@ | ||
DATABASE_URL=postgres://posthog:posthog@localhost:15432/test_database |
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,79 @@ | ||
name: Build container images | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
build: | ||
name: Build and publish container image | ||
strategy: | ||
matrix: | ||
image: | ||
- capture | ||
- hook-api | ||
- hook-janitor | ||
- hook-worker | ||
runs-on: depot-ubuntu-22.04-4 | ||
permissions: | ||
id-token: write # allow issuing OIDC tokens for this workflow run | ||
contents: read # allow reading the repo contents | ||
packages: write # allow push to ghcr.io | ||
|
||
steps: | ||
- name: Check Out Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Depot CLI | ||
uses: depot/setup-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: posthog | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to ghcr.io | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ghcr.io/posthog/hog-rs/${{ matrix.image }} | ||
tags: | | ||
type=ref,event=pr | ||
type=ref,event=branch | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
type=sha | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push image | ||
id: docker_build | ||
uses: depot/build-push-action@v1 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/arm64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
build-args: BIN=${{ matrix.image }} | ||
|
||
- name: Container image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Build hook-migrator docker image | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
permissions: | ||
packages: write | ||
|
||
jobs: | ||
build: | ||
name: build and publish hook-migrator image | ||
runs-on: depot-ubuntu-22.04-4 | ||
permissions: | ||
id-token: write # allow issuing OIDC tokens for this workflow run | ||
contents: read # allow reading the repo contents | ||
packages: write # allow push to ghcr.io | ||
|
||
steps: | ||
- name: Check Out Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Depot CLI | ||
uses: depot/setup-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: posthog | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to ghcr.io | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ghcr.io/posthog/hog-rs/hook-migrator | ||
tags: | | ||
type=ref,event=pr | ||
type=ref,event=branch | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
type=sha | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build and push migrator | ||
id: docker_build_hook_migrator | ||
uses: depot/build-push-action@v1 | ||
with: | ||
context: ./ | ||
file: ./Dockerfile.migrate | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/arm64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
- name: Hook-migrator image digest | ||
run: echo ${{ steps.docker_build_hook_migrator.outputs.digest }} |
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,105 @@ | ||
name: Rust | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: depot-ubuntu-22.04-4 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install rust | ||
uses: dtolnay/[email protected] | ||
|
||
- uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
target | ||
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- name: Run cargo build | ||
run: cargo build --all --locked --release && find target/release/ -maxdepth 1 -executable -type f | xargs strip | ||
|
||
test: | ||
runs-on: depot-ubuntu-22.04-4 | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: posthog | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Setup dependencies | ||
run: | | ||
docker compose up kafka redis db echo_server -d --wait | ||
docker compose up setup_test_db | ||
echo "127.0.0.1 kafka" | sudo tee -a /etc/hosts | ||
- name: Install rust | ||
uses: dtolnay/[email protected] | ||
|
||
- uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
target | ||
key: ${ runner.os }-cargo-debug-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- name: Run cargo test | ||
run: cargo test --all-features | ||
|
||
linting: | ||
runs-on: depot-ubuntu-22.04-4 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install rust | ||
uses: dtolnay/[email protected] | ||
with: | ||
components: clippy,rustfmt | ||
|
||
- uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
target | ||
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- name: Check format | ||
run: cargo fmt -- --check | ||
|
||
- name: Run clippy | ||
run: cargo clippy -- -D warnings | ||
|
||
- name: Run cargo check | ||
run: cargo check --all-features | ||
|
||
shear: | ||
runs-on: depot-ubuntu-22.04-4 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install cargo-binstall | ||
uses: cargo-bins/cargo-binstall@main | ||
|
||
- name: Install cargo-shear | ||
run: cargo binstall --no-confirm cargo-shear | ||
|
||
- run: cargo shear |
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 @@ | ||
/target |
Oops, something went wrong.