-
-
Notifications
You must be signed in to change notification settings - Fork 11
149 lines (144 loc) · 4.79 KB
/
Copy pathlinux.yml
File metadata and controls
149 lines (144 loc) · 4.79 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
name: linux
on:
push:
branches:
- master
- v*
tags:
- AXCIOMA-v*
pull_request:
branches:
- master
- v*
schedule:
- cron: '0 1 * * SUN'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
DOC_ROOT: ${{ github.workspace }}/ACE_TAO
ACE_ROOT: ${{ github.workspace }}/ACE_TAO/ACE
MPC_ROOT: ${{ github.workspace }}/ACE_TAO/MPC
TAO_ROOT: ${{ github.workspace }}/ACE_TAO/TAO
X11_BASE_ROOT: ${{ github.workspace }}
RIDL_ROOT: ${{ github.workspace }}/ridl
TAOX11_ROOT: ${{ github.workspace }}/taox11
X11_BRANCH: master
ACETAOMPC_BRANCH: Latest_ACE8TAO4_Micro
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-24.04
CC: gcc-13
CXX: g++-13
ruby: '3.0'
PackageDeps: g++-13
make_flags: '--release'
- os: ubuntu-24.04
CC: gcc-13
CXX: g++-13
ruby: '3.0'
PackageDeps: g++-13
make_flags: '--debug'
- os: ubuntu-24.04
CC: gcc-13
CXX: g++-13
ruby: '3.1'
PackageDeps: g++-13
make_flags: '--release'
- os: ubuntu-24.04
CC: gcc-14
CXX: g++-14
ruby: '3.2'
PackageDeps: g++-14
make_flags: '--release'
- os: ubuntu-24.04
CC: gcc-14
CXX: g++-14
ruby: '3.2'
PackageDeps: g++-14
make_flags: '--debug'
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} ${{ matrix.CXX }} ruby-${{ matrix.ruby }} ${{ matrix.make_flags }}
env:
CC: ${{ matrix.CC }}
CXX: ${{ matrix.CXX }}
steps:
- if: contains(fromJson('["pull_request", "pull_request_target"]'), github.event_name) && github.repository_owner == 'RemedyIT'
run: |
echo "X11_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV
- if: contains(fromJson('["pull_request", "pull_request_target"]'), github.event_name) == false && github.repository_owner == 'RemedyIT'
run: |
echo "X11_BRANCH=${{ github.ref_name }}" >> $GITHUB_ENV
- uses: actions/checkout@v7
- name: checkout ACE_TAO
uses: actions/checkout@v7
with:
repository: DOCGroup/ACE_TAO
path: ${{ env.DOC_ROOT }}
ref: ${{ env.ACETAOMPC_BRANCH }}
- name: checkout MPC
uses: actions/checkout@v7
with:
repository: DOCGroup/MPC
path: ${{ env.MPC_ROOT }}
ref: ${{ env.ACETAOMPC_BRANCH }}
- name: checkout ridl
uses: actions/checkout@v7
with:
repository: RemedyIT/ridl
path: ${{ env.RIDL_ROOT }}
ref: ${{ env.X11_BRANCH }}
- name: checkout taox11
uses: actions/checkout@v7
with:
repository: RemedyIT/taox11
path: ${{ env.TAOX11_ROOT }}
ref: ${{ env.X11_BRANCH }}
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Add repository ${{ matrix.Repo }}
if: matrix.Repo != ''
run:
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
sudo apt-add-repository "deb http://apt.llvm.org/$(lsb_release -cs)/ ${{ matrix.Repo }} main"
- name: Add packages
run: |
sudo apt-get --yes update
sudo apt-get --yes install libxerces-c-dev libssl-dev libzmq3-dev ${{ matrix.PackageDeps }}
- name: Run brix11 configure
run: |
$X11_BASE_ROOT/bin/brix11 configure -W aceroot=$ACE_ROOT -W taoroot=$TAO_ROOT -W mpcroot=$MPC_ROOT
- name: Print brix11 configuration
run: |
$X11_BASE_ROOT/bin/brix11 env -- configure -P
- name: Run brix11 gen build
run: |
$X11_BASE_ROOT/bin/brix11 gen build workspace.mwc -- gen build $TAOX11_ROOT/examples -- gen build $TAOX11_ROOT/orbsvcs/tests -- gen build $TAOX11_ROOT/tests
- name: Run brix11 make
run: |
$X11_BASE_ROOT/bin/brix11 make ${{ matrix.make_flags }} -N $X11_BASE_ROOT -- make ${{ matrix.make_flags }} -N $TAOX11_ROOT/examples -- make ${{ matrix.make_flags }} -N $TAOX11_ROOT/orbsvcs/tests -- make ${{ matrix.make_flags }} -N $TAOX11_ROOT/tests
- name: Install necessary ruby gems
run: |
gem install asciidoctor:2.0.15 coderay
- name: Run brix11 generate documentation
run: |
$X11_BASE_ROOT/bin/brix11 generate documentation
- name: Check documentation file existence
id: check_files
uses: andstor/file-existence-action@v3
with:
files: "docs/html/taox11/getting_started.html"
- name: File exists
if: steps.check_files.outputs.files_exists == 'false'
uses: actions/github-script@v9
with:
script: |
core.setFailed('Documentation not generated')