This commit is contained in:
2025-02-07 06:57:02 +03:00
parent 6bae1a98ea
commit 21a7d7506a
3 changed files with 5 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ import freeflowuniverse.herolib.osal.notifier
import os
import time
fn on_file_change(event notifier.NotifyEvent, path string) {
fn on_file_change(event notifier.NotifyEvent, path string, args map[string]string) {
match event {
.create { println('File created: ${path}') }
.modify { println('File modified: ${path}') }

View File

@@ -111,7 +111,7 @@ function package_install {
}
is_github_actions() {
[ -d "/home/runner" ] || [ -d "$HOME/runner" ]
[ "$GITHUB_ACTIONS" == "true" ]
}

View File

@@ -72,7 +72,7 @@ fn get_cache_key(path string, base_dir string) string {
}
// Check if a file should be ignored or marked as error based on its path
fn process_test_file(path string, base_dir string, test_files_ignore []string, test_files_error []string, mut cache TestCache, mut tests_in_error []string) ! {
fn process_test_file(path string, base_dir string, test_files_ignore []string, test_files_error []string, mut cache TestCache) ! {
// Get normalized paths
norm_path, rel_path := get_normalized_paths(path, base_dir)
@@ -233,12 +233,10 @@ for test in test_files {
// If directory, run tests for each .v file in it recursively
files := os.walk_ext(full_path, '.v')
for file in files {
process_test_file(file, norm_dir_of_script, test_files_ignore, test_files_error, mut
cache!
process_test_file(file, norm_dir_of_script, test_files_ignore, test_files_error, mut cache)!
}
} else if os.is_file(full_path) {
process_test_file(full_path, norm_dir_of_script, test_files_ignore, test_files_error, mut
cache!
process_test_file(full_path, norm_dir_of_script, test_files_ignore, test_files_error, mut cache)!
}
}