-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (82 loc) · 2.55 KB
/
tests.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
name: Tests
on:
push:
branches:
- master
- ci
pull_request:
workflow_dispatch:
inputs: {}
jobs:
test:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
edgedb-version: [nightly]
os: [ubuntu-24.04]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 50
submodules: true
- name: "pg_config???"
run: |
pg_config || true
- name: Install EdgeDB
uses: edgedb/setup-edgedb@v1
with:
server-version: ${{ matrix.edgedb-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: double check
run: |
edgedb-server --version
PYTHON=$(dirname $(sudo -u edgedb edgedb server info --latest --bin-path))/python3
echo $PYTHON
- name: Registering deb-src repositories
run: |
sudo sed -i 's/^Types: deb$/Types: deb deb-src/' /etc/apt/sources.list.d/ubuntu.sources
sudo apt-get update
- name: Remove initially installed Postgres
run: |
sudo apt-get remove $(dpkg --get-selections | grep postgres | cut -f1)
- name: Install PostGIS build deps
run: |
sudo apt-get build-dep --ignore-missing postgis
- name: Install Postgres
run: |
sudo apt-get install postgresql-16 postgresql-server-dev-16
- name: Build extension package
run: |
PYTHON=$(dirname $(sudo -u edgedb edgedb server info --latest --bin-path))/python3
make -j8 PYTHON=$PYTHON EDBFLAGS=--no-devmode PG_CONFIG=$(which pg_config)
# - name: Install Python Deps
# if: steps.release.outputs.version == 0
# run: |
# python -m pip install --upgrade setuptools pip wheel
# python -m pip install -e .[test]
# - name: Test
# if: steps.release.outputs.version == 0
# env:
# LOOP_IMPL: ${{ matrix.loop }}
# SERVER_VERSION: ${{ matrix.edgedb-version }}
# run: |
# if [ "${SERVER_VERSION}" = "nightly" ]; then
# export EDGEDB_TEST_CODEGEN_ASSERT_SUFFIX=.assert
# else
# export EDGEDB_TEST_CODEGEN_ASSERT_SUFFIX=.assert${SERVER_VERSION}
# fi
# if [ "${LOOP_IMPL}" = "uvloop" ]; then
# env USE_UVLOOP=1 python -m unittest -v tests.suite
# else
# python -m unittest -v tests.suite
# fi