Skip to content

Commit 2a81b78

Browse files
authored
Move to cimg/orb 0.6.5 and feed with the newer way (#58)
* Move to cimg/orb 0.6.5 and feed with the newer way * Update submodule * Fix issues with feed, add temp-versions to build clojure 1.11.2 * Add java 21
1 parent 10fa63f commit 2a81b78

File tree

6 files changed

+99
-5
lines changed

6 files changed

+99
-5
lines changed

.circleci/config.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,27 @@
11
version: 2.1
22

33
orbs:
4-
cimg: circleci/[email protected]
4+
cimg: circleci/[email protected]
5+
6+
parameters:
7+
cron:
8+
type: boolean
9+
default: false
510

611
workflows:
12+
automated-wf:
13+
when: << pipeline.parameters.cron >>
14+
jobs:
15+
- cimg/update:
16+
update-script: clojureFeed.sh
17+
context:
18+
- slack-notification-access-token
19+
- slack-cimg-notifications
20+
- cpe-image-bot-github-creds
21+
722
main-wf:
23+
when:
24+
not: << pipeline.parameters.cron >>
825
jobs:
926
- cimg/build-and-deploy:
1027
name: "Test"

Dockerfile.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ ENV CLOJURE_VERSION=%%VERSION_FULL%% \
1010
# Setup the primary install method for Clojure, using CLJ. It unfortunately
1111
# requires the Clojure version as well as the build number (?), thus a
1212
# parameter (param1) is used.
13-
RUN curl -sSL -o clojure-installer.sh "https://download.clojure.org/install/linux-install-%%PARAM1%%.sh" && \
13+
RUN curl -sSL -o clojure-installer.sh "https://github.com/clojure/brew-install/releases/download/%%VERSION_FULL%%.%%PARAM1%%/linux-install.sh" && \
1414
chmod +x clojure-installer.sh && \
1515
sudo ./clojure-installer.sh && \
1616
rm clojure-installer.sh
1717

18-
ENV LEIN_VERSION=2.10.0
18+
ENV LEIN_VERSION=2.11.2
1919
RUN mkdir -p $HOME/bin && \
2020
# the above line can go in the next base image update
2121
curl -sSL -o $HOME/bin/lein "https://raw.githubusercontent.com/technomancy/leiningen/${LEIN_VERSION}/bin/lein" && \

clojureFeed.sh

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
#!/usr/bin/env bash
2+
source manifest
3+
vers=()
4+
5+
if [ -f shared/automated-updates.sh ]; then
6+
source shared/automated-updates.sh
7+
else
8+
echo "Check if submodule was loaded; automated-updates.sh is missing"
9+
exit 1
10+
fi
11+
12+
buildParameter () {
13+
local newVersionString=$1
14+
export builtParam="#$(echo "$newVersionString" | awk -F. '{print $NF}')"
15+
}
16+
17+
getLeinVersion() {
18+
local templateFile=$1
19+
20+
RSS_URL="https://github.com/technomancy/leiningen/tags.atom"
21+
VERSIONS=$(curl --silent "$RSS_URL" | grep -E '(title)' | tail -n +2 | sed -e 's/^[ \t]*//' | sed -e 's/<title>//' -e 's/<\/title>//')
22+
23+
for version in $VERSIONS; do
24+
if [[ $version =~ [0-9]+(\.[0-9]+)*$ ]]; then
25+
generateVersions "$version"
26+
generateSearchTerms "LEIN_VERSION=" "$templateFile" ""
27+
replaceVersions "LEIN_VERSION=" "$SEARCH_TERM" "true"
28+
fi
29+
done
30+
}
31+
32+
getClojureVersion() {
33+
34+
echo "Getting Lein version..."
35+
getLeinVersion "Dockerfile.template"
36+
37+
# RSS_URL="https://github.com/clojure/clojure/tags.atom"
38+
# VERSIONS=$(curl --silent "$RSS_URL" | grep -E '(title)' | tail -n +2 | sed -e 's/^[ \t]*//' | sed -e 's/<title>//' -e 's/<\/title>//')
39+
VERSIONS=$(cat temp-versions)
40+
for version in $VERSIONS; do
41+
if [[ $version =~ ^clojure-[0-9]+(\.[0-9]+)*$ ]]; then
42+
version_copy="$(cut -d '-' -f2 <<< "$version")"
43+
generateVersions "$(cut -d '-' -f2 <<< "$version")"
44+
generateSearchTerms "CLOJURE_VERSION=" "$majorMinor/${parentTags[-1]}/Dockerfile" "\\"
45+
releaseVersion=$(curl -sSL https://api.github.com/repos/clojure/brew-install/releases |
46+
jq -r --arg version "$version_copy" 'map(select(.target_commitish == $version)) | sort_by(.created_at) | last | .tag_name')
47+
buildParameter "$releaseVersion"
48+
directoryCheck "$majorMinor" "$SEARCH_TERM" "$builtParam"
49+
if [[ $(eval echo $?) == 0 ]]; then
50+
generateVersionString "$newVersion" "$builtParam"
51+
fi
52+
53+
fi
54+
done
55+
}
56+
57+
getClojureVersion
58+
# vers=($(printf "%s\n" "${vers[@]}" | sort -n))
59+
if [ -n "${vers[*]}" ]; then
60+
echo "Included version updates: ${vers[*]}"
61+
echo "Running release script"
62+
./shared/release.sh "${vers[@]}"
63+
else
64+
echo "No new version updates"
65+
exit 0
66+
fi

manifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ namespace=cimg
44
repository=clojure
55
parent=openjdk
66
variants=(node browsers)
7-
parentTags=(8.0 11.0 17.0)
7+
parentTags=(8.0 11.0 17.0 21.0)
88
defaultParentTag=17.0
99
parentSlug=openjdk

temp-versions

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
clojure-1.12.0
2+
clojure-1.12.0-rc2
3+
clojure-1.12.0-rc1
4+
clojure-1.11.4
5+
clojure-1.12.0-beta2
6+
clojure-1.12.0-beta1
7+
clojure-1.12.0-alpha12
8+
clojure-1.12.0-alpha11
9+
clojure-1.12.0-alpha10
10+
clojure-1.11.3
11+
clojure-1.11.2

0 commit comments

Comments
 (0)