Skip to content

Commit ee27f2e

Browse files
committed
breakout cronut-integrant and cronut-javax into separate repos
1 parent 7cc07be commit ee27f2e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+194
-2788
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,13 @@ jobs:
1313

1414
strategy:
1515
fail-fast: false
16-
matrix:
17-
project: [cronut, cronut-integrant, cronut-javax]
1816

1917
steps:
2018
- name: Checkout
2119
uses: actions/checkout@v4
2220

23-
- name: Setup Java8
24-
if: ${{ matrix.project == 'cronut-javax' }}
25-
uses: actions/setup-java@v4
26-
with:
27-
distribution: 'temurin'
28-
java-version: '8'
29-
3021
- name: Setup Java11
31-
if: ${{ matrix.project != 'cronut-javax' }}
32-
uses: actions/setup-java@v4
22+
uses: actions/setup-java@v5
3323
with:
3424
distribution: 'temurin'
3525
java-version: '11'
@@ -41,20 +31,19 @@ jobs:
4131
github-token: ${{ secrets.GITHUB_TOKEN }}
4232

4333
- name: Deps
44-
working-directory: ./${{ matrix.project }}
34+
working-directory: ./
4535
run: lein with-profile +smoke deps
4636

4737
- name: Fmt
48-
working-directory: ./${{ matrix.project }}
38+
working-directory: ./
4939
run: lein fmt
5040

5141
- name: Kondo
52-
working-directory: ./${{ matrix.project }}
42+
working-directory: ./
5343
run: lein kondo
5444

5545
- name: Test
56-
if: ${{ matrix.project != 'cronut-integrant' }}
57-
working-directory: ./${{ matrix.project }}
46+
working-directory: ./
5847
run: lein test
5948

6049
- name: NVD
@@ -63,17 +52,17 @@ jobs:
6352
# actions/setup-java changes JAVA_HOME so it needs to be reset to match the depcheck image
6453
JAVA_HOME: /opt/jdk
6554
with:
66-
project: ${{ matrix.project }}
67-
path: ${{ matrix.project }}/target
55+
project: cronut
56+
path: ./target
6857
format: 'HTML'
69-
out: ${{ matrix.project }}/reports
58+
out: ./reports
7059
args: >
71-
--suppression ${{ matrix.project }}/dependency-check-suppressions.xml
60+
--suppression ./dependency-check-suppressions.xml
7261
7362
- name: Persist NVD
7463
if: always()
7564
uses: actions/upload-artifact@v4
7665
with:
77-
name: nvd-${{ matrix.project }}-${{ github.sha }}
78-
path: ${{ matrix.project }}/reports/*
66+
name: nvd-cronut-${{ github.sha }}
67+
path: ./reports/*
7968
retention-days: 1

README.md

Lines changed: 183 additions & 211 deletions
Large diffs are not rendered by default.

cronut-integrant/.gitignore

Lines changed: 0 additions & 15 deletions
This file was deleted.

cronut-integrant/LICENSE

Lines changed: 0 additions & 201 deletions
This file was deleted.

0 commit comments

Comments
 (0)