Decouple service from global state #6
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
name: E2E tests | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
# Build the latest version of complement-compatible-synapse, and cache the image for use in e2e tests. | |
build-synapse: | |
runs-on: ubuntu-latest | |
outputs: | |
synapsesha: ${{ steps.gitsha.outputs.sha }} | |
steps: | |
- name: Checkout synapse | |
uses: actions/checkout@v3 | |
with: | |
repository: matrix-org/synapse | |
ref: master | |
- name: Get synapse git sha | |
id: gitsha | |
run: echo sha=`git rev-parse --short HEAD` >> "$GITHUB_OUTPUT" | |
- name: Cache complement-synapse image | |
id: cached-image | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/img-synapse.tar | |
key: ${{ runner.os }}-complement-synapse-${{ steps.gitsha.outputs.sha }} | |
- if: ${{ steps.cached-image.outputs.cache-hit != 'true' }} | |
name: Build images | |
run: | | |
# enable buildkit for the docker builds | |
export DOCKER_BUILDKIT=1 | |
docker build -f docker/Dockerfile-workers -t matrixdotorg/synapse-workers:latest . | |
docker build -f docker/complement/Dockerfile -t complement-synapse:latest docker/complement | |
docker image save complement-synapse:latest > /tmp/img-synapse.tar | |
build-homerunner: | |
runs-on: ubuntu-latest | |
outputs: | |
homerunnersha: ${{ steps.gitsha.outputs.sha }} | |
steps: | |
- name: Checkout matrix-org/complement | |
uses: actions/checkout@v3 | |
with: | |
repository: matrix-org/complement | |
- name: Get complement git sha | |
id: gitsha | |
run: echo sha=`git rev-parse --short HEAD` >> "$GITHUB_OUTPUT" | |
- name: Cache homerunner | |
id: cached | |
uses: actions/cache@v3 | |
with: | |
path: homerunner | |
key: ${{ runner.os }}-homerunner-${{ steps.gitsha.outputs.sha }} | |
- name: "Set Go Version" | |
if: ${{ steps.cached.outputs.cache-hit != 'true' }} | |
run: | | |
echo "$GOROOT_1_18_X64/bin" >> $GITHUB_PATH | |
echo "~/go/bin" >> $GITHUB_PATH | |
# Build and install homerunner | |
- name: Install Complement Dependencies | |
if: ${{ steps.cached.outputs.cache-hit != 'true' }} | |
run: | | |
sudo apt-get update && sudo apt-get install -y libolm3 libolm-dev | |
- name: Build homerunner | |
if: ${{ steps.cached.outputs.cache-hit != 'true' }} | |
run: | | |
go build ./cmd/homerunner | |
integration-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
needs: | |
- build-synapse | |
- build-homerunner | |
steps: | |
- name: Install Complement Dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install -y libolm3 | |
- name: Load cached homerunner bin | |
uses: actions/cache@v3 | |
with: | |
path: homerunner | |
key: ${{ runner.os }}-homerunner-${{ needs.build-synapse.outputs.homerunnersha }} | |
fail-on-cache-miss: true # Shouldn't happen, we build this in the needs step. | |
- name: Load cached complement-synapse image | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/img-synapse.tar | |
key: ${{ runner.os }}-complement-synapse-${{ needs.build-synapse.outputs.synapsesha }} | |
fail-on-cache-miss: true # Shouldn't happen, we build this in the needs step. | |
- name: Load images | |
run: | | |
docker load --input /tmp/img-synapse.tar | |
- name: Checkout conference-bot | |
uses: actions/checkout@v3 | |
with: | |
path: conference-bot | |
# Setup node & run tests | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: conference-bot/.node-version | |
- name: Run Homerunner tests | |
timeout-minutes: 10 | |
run: | | |
cd conference-bot | |
yarn --strict-semver --frozen-lockfile | |
HOMERUNNER_SPAWN_HS_TIMEOUT_SECS=100 ../homerunner & | |
bash -ic 'yarn test:e2e' |