File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105
105
packager : " sudo apt-get" ,
106
106
packages : " python3-pip" ,
107
107
snaps : " " ,
108
- build-cmd : " pip install apkg && apkg system-setup && apkg build && apkg install "
108
+ build-cmd : " "
109
109
}
110
110
111
111
steps :
@@ -135,6 +135,16 @@ jobs:
135
135
sudo make install
136
136
if : ${{ matrix.config.name == 'Debug, gcc' }}
137
137
138
+ - name : Build-and-install-package
139
+ shell : bash
140
+ working-directory : ${{ github.workspace }}
141
+ run : |
142
+ pip install apkg
143
+ apkg system-setup
144
+ apkg build
145
+ apkg install
146
+ if : ${{ matrix.config.name == 'DEB Package' }}
147
+
138
148
- name : Configure
139
149
shell : bash
140
150
working-directory : ${{ github.workspace }}
@@ -151,11 +161,13 @@ jobs:
151
161
export LC_ALL=C.UTF-8
152
162
export PATH=/snap/bin:${{ github.workspace }}/coverity-tools/bin:$PATH
153
163
${{ matrix.config.build-cmd }}
164
+ if : ${{ matrix.config.name != 'DEB Package' }}
154
165
155
166
- name : Test
156
167
shell : bash
157
168
working-directory : ${{ github.workspace }}/build
158
169
run : ctest --output-on-failure
170
+ if : ${{ matrix.config.name != 'DEB Package' }}
159
171
160
172
build-windows :
161
173
name : ${{ matrix.name }}
You can’t perform that action at this time.
0 commit comments