-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (45 loc) · 1.4 KB
/
create-databases.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
name: Create databases
on:
workflow_dispatch:
jobs:
Create-databases:
runs-on: [self-hosted, windows, x64, '${{ matrix.dev-or-ci }}', '${{ matrix.actian-efcore-environment }}', '${{ matrix.compatibility }}']
strategy:
fail-fast: false
matrix:
dev-or-ci:
- Dev
- CI
actian-efcore-environment:
#- WIN64_INGRES_10_1_0
#- WIN64_ACTIANX_11_1_0
- WIN64_ACTIANX_11_2_0
compatibility:
- Ingres
- Ansi
env:
config: Debug
steps:
- name: Clean build directory
run: |
rd /s /q . 2>nul
exit /b 0
shell: cmd
- uses: actions/checkout@v3
- name: Setup Actian installation
run: powershell .\scripts\SetupActianInstallation.ps1
- name: Environment
run: |
Get-ChildItem env:
- name: Drop test databases
run: dotnet run -- drop-test-databases
working-directory: utils/Actian.EFCore.Build
- name: Create database users
run: dotnet run -- create-db-users
working-directory: utils/Actian.EFCore.Build
- name: Create test databases
run: dotnet run -- create-test-databases
working-directory: utils/Actian.EFCore.Build
- name: Populate northwind database
run: dotnet run -- populate-northwind
working-directory: utils/Actian.EFCore.Build