From b9bdc650e2167ba89b5d689bd020ca6997032ccb Mon Sep 17 00:00:00 2001 From: Bill Howe <4631165+wdhowe@users.noreply.github.com> Date: Sun, 3 Jan 2021 22:13:50 -0600 Subject: [PATCH] cicd jdk versions and gitignore. (#11) - Note JDK LTS versions and removed unsupported version in github cicd workflow. - Added vscode calva related dirs to gitignore. --- .github/workflows/clojure.yml | 3 ++- .gitignore | 20 +++++++++++--------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/clojure.yml b/.github/workflows/clojure.yml index acbea47..423ec4b 100644 --- a/.github/workflows/clojure.yml +++ b/.github/workflows/clojure.yml @@ -13,7 +13,8 @@ jobs: strategy: matrix: - jdk_version: [8, 11, 14, 15, 16] + # JDK LTS: 8, 11, 17 + jdk_version: [8, 11, 15, 16] os: [ubuntu-latest] container: diff --git a/.gitignore b/.gitignore index 536aa14..c69cfd7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,15 @@ -/target -/classes +/.calva /checkouts -profiles.clj -pom.xml -pom.xml.asc -*.jar *.class -/.calva +/classes +.clj-kondo/ +.hg/ +.hgignore +*.jar /.lein-* +.lsp/ /.nrepl-port -.hgignore -.hg/ +pom.xml +pom.xml.asc +profiles.clj +/target