Skip to content

Commit 9e6535a

Browse files
committed
fix matrix run conditions
1 parent caf82d2 commit 9e6535a

File tree

3 files changed

+7
-15
lines changed

3 files changed

+7
-15
lines changed

.github/.cache_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.9
1+
0.0.10

config/generation.config.js

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,10 @@ module.exports = {
2828

2929
// PHP
3030
'!clients/algoliasearch-client-php/*',
31-
'!clients/algoliasearch-client-php/lib/*',
32-
'!clients/algoliasearch-client-php/lib/Cache/**',
33-
'!clients/algoliasearch-client-php/lib/Exceptions/**',
34-
'!clients/algoliasearch-client-php/lib/Http/**',
35-
'!clients/algoliasearch-client-php/lib/Log/**',
36-
'!clients/algoliasearch-client-php/lib/RequestOptions/**',
37-
'!clients/algoliasearch-client-php/lib/RetryStrategy/**',
38-
'!clients/algoliasearch-client-php/lib/Support/**',
31+
'clients/algoliasearch-client-php/lib/Api/*',
32+
'clients/algoliasearch-client-php/lib/Model/**',
33+
'clients/algoliasearch-client-php/lib/Configuration/*',
34+
'clients/algoliasearch-client-php/lib/ApiException.php',
35+
'clients/algoliasearch-client-php/lib/ObjectSerializer.php',
3936
],
4037
};

scripts/ci/githubActions/createMatrix.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,7 @@ async function getSpecMatrix(): Promise<void> {
128128
};
129129

130130
for (const client of CLIENTS) {
131-
// `algoliasearch` is an aggregation of client
132-
if (client === 'algoliasearch') {
133-
continue;
134-
}
135-
136-
// The `lite` spec is created by the `search` spec
131+
// The `algoliasearch` spec is created by the `search` spec, for the `lite` JavaScript client.
137132
const bundledSpecName = client === 'algoliasearch' ? 'search' : client;
138133

139134
matrix.toRun.push(client);

0 commit comments

Comments
 (0)