Skip to content

Commit

Permalink
Merge pull request #13 from SURFnet/fix-release_check
Browse files Browse the repository at this point in the history
Fix release_check make target
  • Loading branch information
remvee authored Jul 10, 2024
2 parents 4eba072 + b7af3ef commit fe0b456
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/install-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ BABASHKA_VERSION="1.3.188"
BABASHKA_ARCH="linux-amd64"

if [ ! -x "bin/clojure" ]; then
curl -O "https://download.clojure.org/install/linux-install-${CLOJURE_VERSION}.sh"
bash "linux-install-${CLOJURE_VERSION}.sh" -p "$(pwd)"
F="linux-install-${CLOJURE_VERSION}.sh"
curl -O "https://download.clojure.org/install/${F}"
bash "${F}" -p "$(pwd)"
rm -f "${F}"
fi

if [ ! -x "bin/bb" ]; then
curl -LO "https://github.com/babashka/babashka/releases/download/v${BABASHKA_VERSION}/babashka-${BABASHKA_VERSION}-${BABASHKA_ARCH}.tar.gz"
tar -zxf "babashka-${BABASHKA_VERSION}-${BABASHKA_ARCH}.tar.gz" -C bin
F="babashka-${BABASHKA_VERSION}-${BABASHKA_ARCH}.tar.gz"
curl -LO "https://github.com/babashka/babashka/releases/download/v${BABASHKA_VERSION}/${F}"
tar -zxf "${F}" -C bin
rm -f "${F}"
fi
11 changes: 5 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
*.jar
/.clj-kondo/
/.cpcache/
/.envrc
/bin/
/lib/
eduhub-validator*
*.tar.gz
/report.html
/observations.edn
/report.html
/share/
/target/
*.jar
/.clj-kondo/
/src/nl/surf/eduhub_validator/version.txt
/target/
/usage.txt.generated
eduhub-validator*

0 comments on commit fe0b456

Please sign in to comment.