-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split e2e workflow in 2 in order to run the 03 tests with a matrix fo…
…r SQLite and PG.
- Loading branch information
Showing
3 changed files
with
120 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
name: E2E / Satellite | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
paths-ignore: | ||
# Root files | ||
- "*" | ||
- "!pnpm-lock.yaml" | ||
# CI files not related to GH actions | ||
- ".buildkite/**" | ||
- "**/README.md" | ||
- "docs/**" | ||
|
||
env: | ||
OTP_VERSION: "25.3.2.8" | ||
ELIXIR_VERSION: "1.16.1-otp-25" | ||
|
||
concurrency: | ||
group: e2e-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
e2e_tests: | ||
name: E2E tests | ||
runs-on: electric-e2e-8-32 | ||
strategy: | ||
matrix: | ||
dialect: [SQLite, Postgres] | ||
defaults: | ||
run: | ||
working-directory: e2e | ||
env: | ||
BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_TEST_ANALYTICS_E2E }} | ||
DIALECT: ${{ matrix.dialect }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
fetch-depth: 0 | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/github-slug-action@v4 | ||
- name: Inject variables for `docker buildx` github actions caching | ||
uses: crazy-max/ghaction-github-runtime@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Log in to the Container registry | ||
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: ${{ env.OTP_VERSION }} | ||
elixir-version: ${{ env.ELIXIR_VERSION }} | ||
|
||
- run: | | ||
echo "ELECTRIC_VERSION=$(make --silent print_version_from_git)" >> $GITHUB_ENV | ||
working-directory: components/electric | ||
- run: make docker-build-ci | ||
env: | ||
ELECTRIC_IMAGE_NAME: electric-sql-ci/electric | ||
working-directory: components/electric | ||
- run: make docker-build-ws-client | ||
env: | ||
ELECTRIC_CLIENT_IMAGE_NAME: electric-sql-ci/electric-ws-client | ||
working-directory: components/electric | ||
|
||
- name: Cache built lux | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
e2e/lux/bin | ||
e2e/lux/ebin | ||
e2e/lux/priv | ||
key: ${{ runner.os }}-luxbuilt-${{ env.OTP_VERSION }}-${{ env.ELIXIR_VERSION }} | ||
|
||
- run: make lux | ||
- run: make deps pull | ||
- run: make test-satellite-only | ||
id: tests | ||
env: | ||
ELECTRIC_IMAGE_NAME: electric-sql-ci/electric | ||
ELECTRIC_CLIENT_IMAGE_NAME: electric-sql-ci/electric-ws-client | ||
ELECTRIC_IMAGE_TAG: ${{ env.ELECTRIC_VERSION }} | ||
|
||
- name: Upload lux logs | ||
uses: actions/upload-artifact@v3 | ||
if: ${{ failure() && steps.tests.outcome == 'failure' }} | ||
with: | ||
name: lux_logs | ||
path: e2e/**/lux_logs/run_* | ||
- name: Upload test results to Buildkite analytics | ||
if: ${{ !cancelled() && steps.tests.outcome != 'skipped' && env.BUILDKITE_ANALYTICS_TOKEN != '' }} | ||
working-directory: e2e/lux_logs/latest_run | ||
run: | | ||
curl \ | ||
-X POST \ | ||
--fail-with-body \ | ||
-H "Authorization: Token token=\"$BUILDKITE_ANALYTICS_TOKEN\"" \ | ||
-F "data=@lux_junit.xml" \ | ||
-F "format=junit" \ | ||
-F "run_env[CI]=github_actions" \ | ||
-F "run_env[key]=$GITHUB_ACTION-$GITHUB_RUN_NUMBER-$GITHUB_RUN_ATTEMPT" \ | ||
-F "run_env[number]=$GITHUB_RUN_NUMBER" \ | ||
-F "run_env[branch]=$GITHUB_REF" \ | ||
-F "run_env[commit_sha]=$GITHUB_SHA" \ | ||
-F "run_env[url]=https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" \ | ||
https://analytics-api.buildkite.com/v1/uploads |
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