-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (44 loc) · 1.19 KB
/
core.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
---
name: Core Build
on:
workflow_dispatch:
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
DEV_IMAGE: ghcr.io/gaia-platform/dev-base-gaia-platform:latest
jobs:
Core:
runs-on: ubuntu-20.04
env:
GAIA_REPO: ${{ github.workspace }}
steps:
- name: Checkout Repository
uses: actions/checkout@main
- name: Setup Action
uses: ./.github/actions/setup-job
- name: Create Build
uses: ./.github/actions/build-job
with:
gaia-repo: ${{ github.workspace }}
job-name: ${{ github.job }}
execute-unit-tests: true
publish-package: false
build-flavor: Core
build-type: Release
Debug_Core:
runs-on: ubuntu-20.04
env:
GAIA_REPO: ${{ github.workspace }}
steps:
- name: Checkout Repository
uses: actions/checkout@main
- name: Setup Action
uses: ./.github/actions/setup-job
- name: Create Build
uses: ./.github/actions/build-job
with:
gaia-repo: ${{ github.workspace }}
job-name: ${{ github.job }}
execute-unit-tests: true
publish-package: false
build-flavor: Core
build-type: Debug