1
0
Fork 0
mirror of synced 2024-08-19 20:21:41 +12:00
appwrite/.github/workflows/tests.yml

117 lines
2.9 KiB
YAML
Raw Normal View History

name: "Tests"
2022-02-10 08:29:26 +13:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2023-09-09 07:03:55 +12:00
env:
TAG: appwrite-dev
on: [pull_request]
jobs:
2023-09-09 07:03:55 +12:00
setup:
name: Setup & Build Appwrite Image
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
2022-11-16 12:37:13 +13:00
# Fetch submodules
submodules: recursive
# If this run was triggered by a pull request event, then checkout
# the head of the pull request instead of the merge commit.
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
2023-09-09 07:06:10 +12:00
# This is a separate action that sets up buildx runner
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
2023-09-09 07:11:00 +12:00
2022-02-10 08:29:26 +13:00
- name: Build Appwrite
2023-02-16 08:27:26 +13:00
uses: docker/build-push-action@v3
2023-02-14 08:15:09 +13:00
with:
context: .
push: false
2023-09-09 07:11:57 +12:00
tags: ${{ TAG }}
load: true
2023-02-14 08:15:09 +13:00
cache-from: type=gha
cache-to: type=gha,mode=max
2023-09-09 07:03:55 +12:00
outputs: type=docker,dest=/tmp/$TAG.tar
2023-02-14 08:15:09 +13:00
build-args: |
DEBUG=false
TESTING=true
VERSION=dev
2023-09-09 07:03:55 +12:00
- name: Upload Docker Image
uses: actions/upload-artifact@v3
with:
name: $TAG
path: /tmp/$TAG.tar
2023-02-14 08:15:09 +13:00
2023-09-09 07:03:55 +12:00
# - name: Start Appwrite
# run: |
# docker compose up -d
# sleep 30
2023-02-14 08:15:09 +13:00
2023-09-09 07:03:55 +12:00
# - name: Doctor
# run: docker compose exec -T appwrite doctor
2023-09-09 07:03:55 +12:00
# - name: Environment Variables
# run: docker compose exec -T appwrite vars
2023-09-09 07:03:55 +12:00
# - name: Run Unit Tests
# run: docker compose exec appwrite test /usr/src/code/tests/unit
2023-09-09 06:49:02 +12:00
2023-09-09 07:03:55 +12:00
unit_test:
name: Unit Test
2023-09-09 06:49:02 +12:00
runs-on: ubuntu-latest
2023-09-09 07:03:55 +12:00
needs: setup
2023-09-09 06:49:02 +12:00
steps:
- name: checkout
uses: actions/checkout@v2
with:
2023-09-09 07:03:55 +12:00
fetch-depth: 1
2023-09-09 06:49:02 +12:00
submodules: recursive
2023-09-09 07:03:55 +12:00
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: $TAG
path: /tmp
- name: Load Docker image
run: |
docker load --input /tmp/$TAG.tar
docker image ls -a
# e2e_test:
# name: E2E Test
# runs-on: ubuntu-latest
# needs: build
# strategy:
# fail-fast: false
# matrix:
# services: [Account,Avatars,Console,Databases,Functions,GraphQL,Health,Locale,Projects,Realtime,Storage,Teams,Users,Webhooks]
# steps:
# - name: checkout
# uses: actions/checkout@v2
# with:
# fetch-depth: 2
# submodules: recursive
2023-09-09 06:49:02 +12:00
2023-09-09 07:03:55 +12:00
# - name: Start Appwrite
# run: |
# docker compose up -d
# sleep 30
2023-09-09 06:49:02 +12:00
2023-09-09 07:03:55 +12:00
# - name: Run ${{matrix.services}} Tests
# run: docker compose exec -T appwrite test /usr/src/code/tests/e2e/Services/${{matrix.services}} --debug