forked from libhal/ci
-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (80 loc) · 3.27 KB
/
demo_builder.yml
File metadata and controls
98 lines (80 loc) · 3.27 KB
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
# Copyright 2024 Khalil Estell
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Profile Demo 🏗️ Builder
on:
workflow_dispatch:
workflow_call:
inputs:
library:
type: string
default: ${{ github.event.repository.name }}
repo:
type: string
default: ${{ github.repository }}
conan_version:
type: string
default: "2.0.14"
profile:
type: string
required: true
processor_profile:
type: string
default: ""
platform_profile:
type: string
default: ""
jobs:
build:
runs-on: ubuntu-22.04
if: github.event.action != 'deleted'
steps:
- uses: actions/checkout@v3
with:
submodules: true
repository: ${{ inputs.repo }}
- name: 📥 Install CMake 3.27.7
run: pip3 install cmake==3.27.7
- name: 📥 Install Conan ${{ inputs.conan_version }}
run: pip3 install conan==${{ inputs.conan_version }}
- name: 📡 Add `libhal` repo to conan remotes
run: conan remote add libhal
https://libhal.jfrog.io/artifactory/api/conan/trunk-conan
- name: 📡 Add `astraeus` repo to conan remotes
run: conan remote add astraeus
https://libhal.jfrog.io/artifactory/api/conan/astraeuslibrary-conan-local
- name: 📡 Create and setup default profile
run: conan profile detect --force
- name: 👁️🗨️ Show conan profile
run: conan profile show
- name: 📡 Sign into JFrog Artifactory
if: ${{ github.ref == 'refs/heads/main' }}
env:
API_KEY: ${{ secrets.JFROG_LIBHAL_TRUNK_API_KEY }}
JFROG_USER: ${{ secrets.JFROG_LIBHAL_TRUNK_USER }}
# run: conan remote login -p $API_KEY libhal $JFROG_USER
run: conan remote login -p $API_KEY astraeus $JFROG_USER
- name: Install libhal settings_user.yml
run: conan config install -sf profiles/baremetal https://github.com/libhal/conan-config.git
- name: Install host OS profiles
run: conan config install -sf profiles/x86_64/linux/ -tf profiles https://github.com/libhal/conan-config.git
- name: Install processor profiles
if: inputs.processor_profile != ''
run: conan config install -tf profiles -sf conan/profiles/ ${{ inputs.processor_profile }}
- name: Install platform profiles
if: inputs.platform_profile != ''
run: conan config install -tf profiles -sf conan/profiles/ ${{ inputs.platform_profile }}
- name: 📦 Build package using ${{ inputs.profile }}
run: conan create . -pr ${{ inputs.profile }} -s build_type=MinSizeRel
- name: 🏗️ Build demos for ${{ inputs.profile }}
run: conan build demos -pr ${{ inputs.profile }} -s build_type=MinSizeRel