aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/conda/compile.sh8
-rwxr-xr-xscripts/ci/conda/setup.sh22
2 files changed, 30 insertions, 0 deletions
diff --git a/scripts/ci/conda/compile.sh b/scripts/ci/conda/compile.sh
new file mode 100755
index 00000000..3d8fcfbe
--- /dev/null
+++ b/scripts/ci/conda/compile.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+mkdir packages
+
+conda build recipe --clobber-file recipe/recipe_clobber.yaml --output-folder packages
+conda install -c ./packages proj
+
+#projinfo -s NAD27 -t EPSG:4269 --area "USA - Missouri"
diff --git a/scripts/ci/conda/setup.sh b/scripts/ci/conda/setup.sh
new file mode 100755
index 00000000..52b93889
--- /dev/null
+++ b/scripts/ci/conda/setup.sh
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+conda update -n base -c defaults conda -y
+conda install conda-build ninja compilers -y
+
+pwd
+ls
+git clone https://github.com/conda-forge/proj.4-feedstock.git
+
+cd proj.4-feedstock
+cat > recipe/recipe_clobber.yaml <<EOL
+source:
+ git_url: https://github.com/OSGeo/PROJ.git
+ git_rev: ${GITHUB_SHA}
+ url:
+ sha256:
+
+build:
+ number: 2112
+EOL
+
+ls recipe