mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-04 03:01:23 +01:00
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
55 lines
2.0 KiB
YAML
55 lines
2.0 KiB
YAML
# This workflow runs e2e smoke test for hobby deployment
|
|
# To check on the status of the instance if this fails go to DO open the instance
|
|
# Instance name should look like `do-ci-hobby-deploy-xxxx`
|
|
# SSH onto the instance and `tail -f /var/log/cloud-init-output.log`
|
|
name: e2e - hobby smoke test
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'release-*.*'
|
|
pull_request:
|
|
paths:
|
|
- docker-compose.base.yml
|
|
- docker-compose.hobby.yml
|
|
- bin/*
|
|
- docker/*
|
|
- .github/workflows/ci-hobby.yml
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
changes:
|
|
runs-on: ubuntu-24.04
|
|
# this is a slow one
|
|
timeout-minutes: 30
|
|
name: Setup DO Hobby Instance and test
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
clean: false
|
|
- name: Clean up data directories with container permissions
|
|
run: |
|
|
# Use docker to clean up files created by containers
|
|
[ -d "data" ] && docker run --rm -v "$(pwd)/data:/data" alpine sh -c "rm -rf /data/seaweedfs /data/minio" || true
|
|
continue-on-error: true
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Get python deps
|
|
run: pip install python-digitalocean==1.17.0 requests==2.28.1
|
|
- name: Setup DO Hobby Instance
|
|
run: python3 bin/hobby-ci.py create
|
|
env:
|
|
DIGITALOCEAN_TOKEN: ${{ secrets.DIGITALOCEAN_TOKEN }}
|
|
- name: Run smoke tests on DO
|
|
run: python3 bin/hobby-ci.py test $GITHUB_HEAD_REF
|
|
env:
|
|
DIGITALOCEAN_TOKEN: ${{ secrets.DIGITALOCEAN_TOKEN }}
|
|
- name: Post-cleanup step
|
|
if: always()
|
|
run: python3 bin/hobby-ci.py destroy
|
|
env:
|
|
DIGITALOCEAN_TOKEN: ${{ secrets.DIGITALOCEAN_TOKEN }}
|