From d50b7fc10c47dede6b49522266c268c66304a389 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 4 Aug 2024 01:49:38 -0700 Subject: [PATCH 1/7] ci scripts test --- ci_scripts/ci_post_clone.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 ci_scripts/ci_post_clone.sh diff --git a/ci_scripts/ci_post_clone.sh b/ci_scripts/ci_post_clone.sh new file mode 100755 index 0000000..c52d920 --- /dev/null +++ b/ci_scripts/ci_post_clone.sh @@ -0,0 +1,5 @@ +#!/bin/zsh +set -e + +brew install cmake +cmake -B xcode-main From 1145dec590ad9394eabcf7583e4eb011ad6d4b46 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 4 Aug 2024 01:53:36 -0700 Subject: [PATCH 2/7] attempt to fix ci post clone --- ci_scripts/ci_post_clone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci_scripts/ci_post_clone.sh b/ci_scripts/ci_post_clone.sh index c52d920..3578194 100755 --- a/ci_scripts/ci_post_clone.sh +++ b/ci_scripts/ci_post_clone.sh @@ -1,4 +1,4 @@ -#!/bin/zsh +#!/bin/sh set -e brew install cmake From 66ac9b045579bb0dc4864eb73c85b15868231b42 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 4 Aug 2024 02:00:22 -0700 Subject: [PATCH 3/7] it's a hack, but it might work --- {ci_scripts => xcode-main/ci_scripts}/ci_post_clone.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ci_scripts => xcode-main/ci_scripts}/ci_post_clone.sh (100%) diff --git a/ci_scripts/ci_post_clone.sh b/xcode-main/ci_scripts/ci_post_clone.sh similarity index 100% rename from ci_scripts/ci_post_clone.sh rename to xcode-main/ci_scripts/ci_post_clone.sh From e1edc3e13e95b63738a5191d805635d24801d1f3 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 4 Aug 2024 02:02:17 -0700 Subject: [PATCH 4/7] it's also a hack --- xcode-main/ci_scripts/ci_post_clone.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/xcode-main/ci_scripts/ci_post_clone.sh b/xcode-main/ci_scripts/ci_post_clone.sh index 3578194..35a9949 100755 --- a/xcode-main/ci_scripts/ci_post_clone.sh +++ b/xcode-main/ci_scripts/ci_post_clone.sh @@ -2,4 +2,5 @@ set -e brew install cmake +rm -rf xcode-main/ci_scripts cmake -B xcode-main From 028a072ab667b66ffb771abd7f9cbebca036fc50 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 4 Aug 2024 02:05:16 -0700 Subject: [PATCH 5/7] wow, just wow --- xcode-main/ci_scripts/ci_post_clone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode-main/ci_scripts/ci_post_clone.sh b/xcode-main/ci_scripts/ci_post_clone.sh index 35a9949..d22dc1c 100755 --- a/xcode-main/ci_scripts/ci_post_clone.sh +++ b/xcode-main/ci_scripts/ci_post_clone.sh @@ -3,4 +3,4 @@ set -e brew install cmake rm -rf xcode-main/ci_scripts -cmake -B xcode-main +cmake -B .. ../.. From e48d04d1eada8777617ec248fdc0614191ba86a0 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 4 Aug 2024 02:06:47 -0700 Subject: [PATCH 6/7] oh, lol --- xcode-main/ci_scripts/ci_post_clone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode-main/ci_scripts/ci_post_clone.sh b/xcode-main/ci_scripts/ci_post_clone.sh index d22dc1c..51ba1a6 100755 --- a/xcode-main/ci_scripts/ci_post_clone.sh +++ b/xcode-main/ci_scripts/ci_post_clone.sh @@ -3,4 +3,4 @@ set -e brew install cmake rm -rf xcode-main/ci_scripts -cmake -B .. ../.. +cmake -B .. -G Xcode ../.. From ee0f94f0a4afc2981faa7112ad0978d7c26352c5 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sun, 4 Aug 2024 02:35:49 -0700 Subject: [PATCH 7/7] xcode-cloud --- .gitignore | 1 + {xcode-main => xcode-cloud}/ci_scripts/ci_post_clone.sh | 0 2 files changed, 1 insertion(+) rename {xcode-main => xcode-cloud}/ci_scripts/ci_post_clone.sh (100%) diff --git a/.gitignore b/.gitignore index b8900a8..825b35b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /build-* /xcode* +!/xcode-cloud /.swiftpm /.swift /.vscode diff --git a/xcode-main/ci_scripts/ci_post_clone.sh b/xcode-cloud/ci_scripts/ci_post_clone.sh similarity index 100% rename from xcode-main/ci_scripts/ci_post_clone.sh rename to xcode-cloud/ci_scripts/ci_post_clone.sh