-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is essentially a project rewrite. It takes all the core concepts from kmono and decouples them to be more flexible and interchangeable. Instead of being primarilly a CLI tool - this project is now more a suite of tools for working in Clojure deps.edn projects.
- Loading branch information
1 parent
38c1bbb
commit 58157f8
Showing
96 changed files
with
2,628 additions
and
2,566 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,2 @@ | ||
{:remove-multiple-non-indenting-spaces? true | ||
:sort-ns-references? true} |
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,92 @@ | ||
name: Release CLI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-cli: | ||
strategy: | ||
matrix: | ||
include: | ||
- arch: linux-amd64 | ||
runs-on: ubuntu-latest | ||
- arch: linux-arm64 | ||
runs-on: arm-c8 | ||
- arch: macos-amd64 | ||
runs-on: macos-latest | ||
- arch: macos-arm64 | ||
runs-on: macos-latest-xlarge | ||
|
||
runs-on: ${{ matrix.runs-on }} | ||
steps: | ||
- name: Checkout git repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Fetch Tags | ||
run: git fetch --tags origin | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 21 | ||
cache: 'maven' | ||
cache-dependency-path: '**/deps.edn' | ||
|
||
- uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '21' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: extractions/setup-just@v2 | ||
- uses: DeLaGuardo/[email protected] | ||
with: | ||
cli: latest | ||
|
||
- name: Build | ||
run: | | ||
just build | ||
just build-cli | ||
- name: Pack binary | ||
run: | | ||
tar -czf kmono-${{ matrix.arch }}.tar.gz -C ./target/bin kmono | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: binaries | ||
if-no-files-found: error | ||
path: kmono-${{ matrix.arch }}.tar.gz | ||
|
||
release-cli: | ||
runs-on: ubuntu-latest | ||
needs: [build-cli] | ||
if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download Binary Artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: binaries | ||
path: bin | ||
|
||
- name: Calculate checksums | ||
run: | | ||
for file in bin/*; do | ||
shasum -a 256 "$file" >> checksums.txt | ||
done | ||
mv checksums.txt bin/checksums.txt | ||
- name: Release | ||
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
bin/* |
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,38 @@ | ||
name: Build and Release Libs | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-and-release-libs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout git repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Fetch Tags | ||
run: git fetch --tags origin | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 21 | ||
cache: 'maven' | ||
cache-dependency-path: '**/deps.edn' | ||
|
||
- uses: extractions/setup-just@v2 | ||
- uses: DeLaGuardo/[email protected] | ||
with: | ||
cli: latest | ||
|
||
- name: Build | ||
run: just build | ||
|
||
- name: Release | ||
if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }} | ||
run: just release |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Test | ||
on: [push] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout git repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 21 | ||
cache: 'maven' | ||
cache-dependency-path: '**/deps.edn' | ||
|
||
- uses: extractions/setup-just@v2 | ||
- uses: DeLaGuardo/[email protected] | ||
with: | ||
cli: latest | ||
|
||
- name: Setup Git | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Kmono CI" | ||
- name: Test | ||
run: | | ||
just cli run --ordered false -M ':*/test' |
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 |
---|---|---|
@@ -1,32 +1,13 @@ | ||
# resources/ccloud.properties | ||
.cache | ||
/.clj-kondo | ||
!/.clj-kondo/config.edn | ||
.cpcache/ | ||
.kbuild/ | ||
.metabuild/ | ||
.nrepl-port | ||
/telepresence.log | ||
/classes/ | ||
target/ | ||
# /resources/zeus-service-account.json | ||
/.log/ | ||
node_modules | ||
config-override.edn | ||
*.log.[0-9][0-9][0-9] | ||
*.log | ||
/resources/auth/ | ||
/.idea/ | ||
.tool-versions | ||
*.iml | ||
/.calva/ | ||
/.DS_Store/ | ||
/logs/ | ||
/data/ | ||
/deps.local.edn | ||
/local | ||
.idea | ||
.vscode | ||
.DS_Store | ||
|
||
.cpcache | ||
.lsp | ||
.portal | ||
.clj-kondo | ||
.nrepl-port | ||
.test-repos | ||
deps.local.edn | ||
|
||
!.github | ||
bin | ||
local | ||
target |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.