forked from metosin/ring-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix memory leaks in multimethod default dispatch caches
- Loading branch information
Showing
6 changed files
with
108 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
--- | ||
name: Run tests | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
env: | ||
ACTIONS_CACHE_VERSION: 0 | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
jdk: [8, 11, 17, 20] | ||
|
||
name: Java ${{ matrix.jdk }} | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Java ${{ matrix.jdk }} | ||
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: ${{ matrix.jdk }} | ||
- name: Maven Cache | ||
id: maven-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.m2/repository | ||
~/.gitlibs | ||
key: m2-cache-${{ env.ACTIONS_CACHE_VERSION }}-${{ hashFiles('project.clj') }}-${{ matrix.jdk }} | ||
restore-keys: | | ||
m2-cache-${{ env.ACTIONS_CACHE_VERSION }}-${{ hashFiles('project.clj') }}- | ||
m2-cache-${{ env.ACTIONS_CACHE_VERSION }}- | ||
- name: Setup Clojure | ||
uses: DeLaGuardo/setup-clojure@master | ||
with: | ||
lein: latest | ||
- name: Run tests | ||
run: lein do clean, all midje, all check | ||
deploy: | ||
concurrency: deploy | ||
needs: test | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Cache local Maven repository | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Prepare java | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
- name: deploy | ||
env: | ||
CLOJARS_USER: 'threatgrid-clojars' | ||
CLOJARS_TOKEN: ${{ secrets.CLOJARS_TOKEN }} | ||
COMMIT_MSG: ${{ github.event.head_commit.message }} | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Threatgrid" | ||
if [[ "$COMMIT_MSG" == "Release :major" ]]; then | ||
lein release :major | ||
elif [[ "$COMMIT_MSG" == "Release :minor" ]]; then | ||
lein release :minor | ||
elif [[ "$COMMIT_MSG" == "Release :patch" ]]; then | ||
lein release :patch | ||
else | ||
lein deploy snapshot | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters