Skip to content

Commit 8f18e24

Browse files
committed
Remove library exclusion to test for failures and fixes
1 parent b5bf703 commit 8f18e24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ni-layers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ on:
4848
paths:
4949
- '.github/workflows/ni-layers.yml'
5050
schedule:
51-
- cron: "0 0 * * 1" # Once a week, at midnight on Monday
51+
- cron: "0 0 * * 1"
5252
workflow_dispatch:
5353

5454
env:

vm/tests/gh_workflows/NILayerTests/build_native_image_layer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def generate_matrix(path_to_data, libs_per_job, delimiter):
6262
libs_in_job = []
6363
for lib in data:
6464
lib_coordinates = f'{lib['group_id']}:{lib['artifact_id']}:{lib['version']}'
65-
if lib_coordinates in excluded_coordinates:
66-
continue
65+
#if lib_coordinates in excluded_coordinates:
66+
# continue
6767
libs_in_job.append(lib_coordinates)
6868
if len(libs_in_job) == libs_per_job:
6969
matrix['coordinates'].append(delimiter.join(libs_in_job))

0 commit comments

Comments
 (0)