From ad8f9bb8d072b2fc3c101d38e721044a39c1e6d5 Mon Sep 17 00:00:00 2001 From: Michael Valdron Date: Tue, 28 May 2024 09:43:57 -0400 Subject: [PATCH 1/2] fix samples path in workflow Signed-off-by: Michael Valdron --- .github/workflows/validate-samples.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-samples.yaml b/.github/workflows/validate-samples.yaml index b9e931b5..2b0b897c 100644 --- a/.github/workflows/validate-samples.yaml +++ b/.github/workflows/validate-samples.yaml @@ -61,4 +61,4 @@ jobs: - name: Validate samples if: ${{ env.STACKS != '' }} - run: STACKS_DIR=$(pwd)/samples/.cache bash tests/validate_devfile_schemas.sh --samples + run: STACKS_DIR=$(pwd)/.cache/samples bash tests/validate_devfile_schemas.sh --samples From 7303de253a3be2142ce0eb7ed2768c5ced5fe9b4 Mon Sep 17 00:00:00 2001 From: Michael Valdron Date: Tue, 28 May 2024 09:55:02 -0400 Subject: [PATCH 2/2] fix documentation Signed-off-by: Michael Valdron --- tests/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/README.md b/tests/README.md index 7cc74d38..3daa1e8a 100644 --- a/tests/README.md +++ b/tests/README.md @@ -21,7 +21,7 @@ - One can test the child samples using the [validate_devfile_schemas](./validate_devfile_schemas/) test suite by performing the following: ```sh export STACKS=$(bash tests/build_parents_file.sh) -STACKS_DIR=samples/.cache bash tests/validate_devfile_schemas.sh --samples +STACKS_DIR=.cache/samples bash tests/validate_devfile_schemas.sh --samples ``` ## Validating non-terminating images