From 0ba9cb27275fe57fb674d1d06be7ba224336dcd9 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 12 Oct 2023 11:34:16 -0700 Subject: [PATCH 1/3] Rename ./script/test-module to ./script/cibuild-module for consistency --- .github/workflows/modules.yml | 2 +- script/{test-module => cibuild-module} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename script/{test-module => cibuild-module} (100%) mode change 100755 => 100644 diff --git a/.github/workflows/modules.yml b/.github/workflows/modules.yml index 9d6e767..15e1c3e 100644 --- a/.github/workflows/modules.yml +++ b/.github/workflows/modules.yml @@ -65,4 +65,4 @@ jobs: architecture: x64 - name: Test Module run: | - ./script/test-module ${{ matrix.module }} + ./script/cibuild-module ${{ matrix.module }} diff --git a/script/test-module b/script/cibuild-module old mode 100755 new mode 100644 similarity index 100% rename from script/test-module rename to script/cibuild-module From 165e32f18dae490a62e48a1b5eece1ca7b09183c Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 12 Oct 2023 11:34:45 -0700 Subject: [PATCH 2/3] Manually install setuptools in script/cibuild-module --- script/cibuild-module | 1 + 1 file changed, 1 insertion(+) diff --git a/script/cibuild-module b/script/cibuild-module index 8148d73..b48ba7c 100644 --- a/script/cibuild-module +++ b/script/cibuild-module @@ -15,6 +15,7 @@ VENV_PYTHON=$(command -v python3) VENV_NAME="${TMP_DIR}/env" "$VENV_PYTHON" -m venv "$VENV_NAME" . "${VENV_NAME}/bin/activate" +pip install setuptools echo "## environment & versions ######################################################" python --version pip --version From 9a5173e252785b94d1f2fe186d95ba3a500619c5 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Thu, 12 Oct 2023 11:39:08 -0700 Subject: [PATCH 3/3] doh, cibuild-module doesn't have +x --- script/cibuild-module | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 script/cibuild-module diff --git a/script/cibuild-module b/script/cibuild-module old mode 100644 new mode 100755