forked from libhal/ci
-
Notifications
You must be signed in to change notification settings - Fork 0
135 lines (108 loc) · 5.08 KB
/
deploy_unit.yml
File metadata and controls
135 lines (108 loc) · 5.08 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# 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: Device 📦 Package 🚀 Deploy (unit)
on:
workflow_dispatch:
workflow_call:
inputs:
library:
default: ${{ github.event.repository.name }}
type: string
repo:
type: string
default: ${{ github.repository }}
conan_version:
type: string
default: "2.0.14"
profile:
required: true
type: string
profile_source:
required: true
type: string
jobs:
pull:
runs-on: ubuntu-22.04
if: github.event.action == 'deleted'
steps:
- 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: 📡 Install linux default profiles
run: conan config install -sf profiles/x86_64/linux/ -tf profiles https://github.com/libhal/conan-config.git
- name: 📡 Sign into JFrog Artifactory
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: 🚮 Pulling package version ${{ github.ref_name }} from `astraeus` repo
run: conan remove "${{ inputs.library }}/${{ github.event.release.tag_name }}" --confirm -r=astraeus
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: 📡 Install linux default profiles
run: conan config install -sf profiles/x86_64/linux/ -tf profiles https://github.com/libhal/conan-config.git
- name: 📡 Sign into JFrog Artifactory
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
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 processor profiles
run: conan config install -tf profiles -sf conan/profiles/ ${{ inputs.profile_source }}
- name: 📦 Create `Debug` package for ${{ inputs.profile }}
run: conan create . -pr ${{ inputs.profile }} -s build_type=Debug -b missing
- name: 📦 Create `RelWithDebInfo` package for ${{ inputs.profile }}
run: conan create . -pr ${{ inputs.profile }} -s build_type=RelWithDebInfo -b missing
- name: 📦 Create `MinSizeRel` package for ${{ inputs.profile }}
run: conan create . -pr ${{ inputs.profile }} -s build_type=MinSizeRel -b missing
- name: 📦 Create `Release` package for ${{ inputs.profile }}
run: conan create . -pr ${{ inputs.profile }} -s build_type=Release -b missing
- name: 🆙 Upload package version ${{ github.ref_name }} to `astraeus` repo
if: startsWith(github.ref, 'refs/tags/')
run: conan upload "${{ inputs.library }}/${{ github.ref_name }}" --confirm -r=astraeus