Skip to content

Commit

Permalink
all1
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner committed Jan 5, 2025
1 parent 4863c93 commit f2eec85
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-cmake.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: NetCDF-C CMake CI - Windows

on: [pull_request,workflow_dispatch]
on: [push,pull_request,workflow_dispatch]

env:
REMOTETESTDOWN: no
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

name: Run macOS-based netCDF Tests

on: [pull_request,workflow_dispatch]
on: [push,pull_request,workflow_dispatch]

concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_win_cygwin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Run Cygwin-based tests

on: [pull_request,workflow_dispatch]
on: [push,pull_request,workflow_dispatch]

concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_win_mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
CPPFLAGS: "-D_BSD_SOURCE"
REMOTETESTDOWN: ${{ vars.REMOTETESTDOWN }}

on: [pull_request,workflow_dispatch]
on: [push,pull_request,workflow_dispatch]

concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
Expand Down
8 changes: 4 additions & 4 deletions nczarr_test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ include $(top_srcdir)/lib_flags.am
AM_TESTS_ENVIRONMENT += export NCZARRFORMAT=2;export NCNOZMETADATA=1;
TESTS_ENVIRONMENT =
TEST_EXTENSIONS = .sh
SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
sh_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
TESTS_ENVIRONMENT += export SETX=1;
#SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
#sh_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
#LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
#TESTS_ENVIRONMENT += export SETX=1;

AM_CFLAGS += -I${top_srcdir}
AM_CPPFLAGS += -I${top_srcdir}
Expand Down
3 changes: 0 additions & 3 deletions nczarr_test/run_consolidated_zarr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ if test "x$srcdir" = x ; then srcdir=`pwd`; fi

. "$srcdir/test_nczarr.sh"

set -x
set -e

s3isolate "testdir_consolidated_zarr"
Expand All @@ -14,7 +13,6 @@ cd $ISOPATH

# Force use of consolidated metadata
unset NCNOZMETADATA
echo "@@@ NCZARRFORMAT=$NCZARRFORMAT NCNOZMETADATA=$NCNOZMETADATA"

# Locate the plugin path
if ! findplugin h5blosc ; then exit 0; fi
Expand Down Expand Up @@ -76,4 +74,3 @@ testcase file
testcase_csl_vs_no file
if test "x$FEATURE_NCZARR_ZIP" = xyes ; then testcase zip; fi
if test "x$FEATURE_S3TESTS" = xyes ; then testcase s3; fi

8 changes: 4 additions & 4 deletions v3_nczarr_test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ include $(top_srcdir)/lib_flags.am
AM_TESTS_ENVIRONMENT += export NCZARRFORMAT=3;export NCNOZMETADATA=1;
TESTS_ENVIRONMENT =
TEST_EXTENSIONS = .sh
SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
sh_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
TESTS_ENVIRONMENT += export SETX=1;
#SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
#sh_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
#LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver-verbose
#TESTS_ENVIRONMENT += export SETX=1;

AM_CFLAGS += -I${top_srcdir}
AM_CPPFLAGS += -I${top_srcdir}
Expand Down
5 changes: 0 additions & 5 deletions v3_nczarr_test/run_consolidated_zarr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ if test "x$srcdir" = x ; then srcdir=`pwd`; fi

. "$srcdir/test_nczarr.sh"

set -x
set -e

s3isolate "testdir_consolidated_zarr"
Expand All @@ -14,9 +13,6 @@ cd $ISOPATH

# Force use of consolidated metadata
unset NCNOZMETADATA
echo "@@@"
echo "$NCZARRFORMAT"
echo "$NCNOZMETADA"

# Locate the plugin path
if ! findplugin h5blosc ; then exit 0; fi
Expand Down Expand Up @@ -70,4 +66,3 @@ testcase file
testcase_csl_vs_no file
if test "x$FEATURE_NCZARR_ZIP" = xyes ; then testcase zip; fi
if test "x$FEATURE_S3TESTS" = xyes ; then testcase s3; fi

0 comments on commit f2eec85

Please sign in to comment.