-
Notifications
You must be signed in to change notification settings - Fork 126
122 lines (111 loc) · 3.23 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: CI
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: sudo apt-get install -y jq
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-v3-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-v3-
- run: yarn install
- run: yarn build
- name: Upload djangobuilder4 dist directory
uses: actions/upload-artifact@v4
with:
name: djangobuilder4_dist
path: ./packages/djangobuilder4/dist
- name: Upload djangobuilder.io dist directory
uses: actions/upload-artifact@v4
with:
name: djangobuilder.io_dist
path: ./packages/djangobuilder.io/dist
smoke_tests:
name: Core - Smoke tests
needs: [build]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: yarn
- run: yarn smoketest
core_tests:
name: Core - Unit tests
needs: [smoke_tests]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: yarn
- run: yarn coretest
cli_tests:
name: DB.io - CLI Tests
needs: [build]
runs-on: ubuntu-24.04
steps:
- run: sudo apt-get install -y libsqlite3-dev
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
# Install a specific version of uv.
version: "0.5.6"
- run: yarn
- run: make smoke_test
cli_tests_postgres:
name: DB.io - CLI Tests
needs: [build]
runs-on: ubuntu-24.04
# Service containers to run with `container-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_PASSWORD: mysecretpassword
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
# - run: sudo apt-get install -y libsqlite3-dev
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
# Install a specific version of uv.
version: "0.5.6"
- run: yarn
- name: Run Smoke tests with Postgres to PostgreSQL
run: make smoke_test_postgres_ci
env:
POSTGRES_HOST: postgres
POSTGRES_PORT: 5432
io_tests:
name: DB.io - Unit Tests
needs: [build]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: yarn
- run: yarn test_io