Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.3.12 release (develop -> master) #102

Merged
merged 42 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
bf96dd0
Add GHA tests, update GHA, simplify tests, remove cruft
MrCreosote Apr 17, 2024
1f2bc68
Fix tests attempt 1
MrCreosote Apr 17, 2024
76bb881
Disable coverage upload
MrCreosote Apr 17, 2024
1245e7e
Fix image build
MrCreosote Apr 17, 2024
39c89e1
Merge pull request #90 from kbase/dev-gradle
MrCreosote Apr 19, 2024
9b5c2fc
Add gradle
MrCreosote Apr 18, 2024
2f34579
Merge pull request #91 from kbase/dev-gradle
MrCreosote Apr 23, 2024
a445c65
Remove submodules
MrCreosote Apr 18, 2024
a4701b9
Merge pull request #92 from kbase/dev-gradle
MrCreosote Apr 24, 2024
eb2a41d
Remove perl scripts
MrCreosote Apr 18, 2024
0db9d6a
Merge pull request #93 from kbase/dev-gradle
MrCreosote Apr 25, 2024
bb4a37b
Remove PySrvRepoPreparator
MrCreosote Apr 18, 2024
91ce5b3
Remove dockerimagebuilder
MrCreosote Apr 18, 2024
e2f4607
Remove GitHubDB and MethodSpecDB
MrCreosote Apr 19, 2024
8f1c860
Remove us.kbase.narrativemethodstore.prepare package
MrCreosote Apr 19, 2024
1443b09
Merge pull request #94 from kbase/dev-gradle
MrCreosote Apr 25, 2024
4311eda
Update dockerfile to use gradle and remove old build cruft
MrCreosote Apr 19, 2024
710b62c
Remove shock client
MrCreosote Apr 20, 2024
3ce448e
Move source to standard Gradle layout
MrCreosote Apr 20, 2024
59e6788
Use jitpacked jars
MrCreosote Apr 26, 2024
e10a49f
Merge pull request #95 from kbase/dev-gradle
MrCreosote Apr 29, 2024
5332067
Merge pull request #96 from kbase/dev-gradle
MrCreosote Apr 30, 2024
c69f58d
Merge pull request #97 from kbase/dev-gradle
MrCreosote May 1, 2024
9d204a4
Merge pull request #98 from kbase/dev-gradle
MrCreosote May 3, 2024
b8537b8
add mongo7 in workflows
Xiangs18 Oct 14, 2024
667085c
upgrade MongoDB to V7
Xiangs18 Oct 21, 2024
6836d81
fix invalid connection string
Xiangs18 Oct 21, 2024
79032e2
convert repoData to doc
Xiangs18 Oct 22, 2024
0ae1092
add JsonIgnoreProperties
Xiangs18 Oct 22, 2024
bffe62a
remove wiredTiger from test.yml && update startupMongo logic
Xiangs18 Oct 22, 2024
e732c56
clean up MongoUtils.java
Xiangs18 Oct 22, 2024
73a117e
use update &
Xiangs18 Oct 23, 2024
7dcd156
add final key word
Xiangs18 Oct 24, 2024
b49b30f
replace killPid by destroy method
Xiangs18 Oct 25, 2024
b3f15d8
remove unused imports in MongoDBHelper.java
Xiangs18 Oct 25, 2024
dd85c57
ignore _id property
Xiangs18 Oct 25, 2024
a43205e
Merge pull request #99 from kbase/dev-mongo7_upgrade
Xiangs18 Oct 28, 2024
966a4f0
add retryWrites
Xiangs18 Oct 28, 2024
8354d9e
add retrywrites param into test config
Xiangs18 Oct 28, 2024
0c8e351
Merge branch 'develop' into dev-add_retryWrites
Xiangs18 Oct 28, 2024
2bb681d
fix typos
Xiangs18 Oct 28, 2024
6b371d3
Merge pull request #101 from kbase/dev-add_retryWrites
Xiangs18 Oct 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 0 additions & 69 deletions .classpath

This file was deleted.

9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# Linux start script should use lf
/gradlew text eol=lf

# These are Windows script files and should use crlf
*.bat text eol=crlf

95 changes: 0 additions & 95 deletions .github/workflows/ReleaseCycleProposal.md

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/build_prodrc_pr.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/build_test_pr.yaml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Manual Build & Push
on:
workflow_dispatch:
jobs:
build-push:
uses: kbase/.github/.github/workflows/reusable_build-push.yml@main
with:
name: '${{ github.event.repository.name }}-develop'
tags: br-${{ github.ref_name }}
secrets: inherit
43 changes: 43 additions & 0 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
name: Pull Request Build, Tag, & Push
on:
pull_request:
branches:
- develop
- main
- master
types:
- opened
- reopened
- synchronize
- closed
jobs:
build-develop-open:
if: github.base_ref == 'develop' && github.event.pull_request.merged == false
uses: kbase/.github/.github/workflows/reusable_build.yml@main
secrets: inherit
build-develop-merge:
if: github.base_ref == 'develop' && github.event.pull_request.merged == true
uses: kbase/.github/.github/workflows/reusable_build-push.yml@main
with:
name: '${{ github.event.repository.name }}-develop'
tags: pr-${{ github.event.number }},latest
secrets: inherit
build-main-open:
if: (github.base_ref == 'main' || github.base_ref == 'master') && github.event.pull_request.merged == false
uses: kbase/.github/.github/workflows/reusable_build-push.yml@main
with:
name: '${{ github.event.repository.name }}'
tags: pr-${{ github.event.number }}
secrets: inherit
build-main-merge:
if: (github.base_ref == 'main' || github.base_ref == 'master') && github.event.pull_request.merged == true
uses: kbase/.github/.github/workflows/reusable_build-push.yml@main
with:
name: '${{ github.event.repository.name }}'
tags: pr-${{ github.event.number }},latest-rc
secrets: inherit
trivy-scans:
if: (github.base_ref == 'develop' || github.base_ref == 'main' || github.base_ref == 'master' ) && github.event.pull_request.merged == false
uses: kbase/.github/.github/workflows/reusable_trivy-scans.yml@main
secrets: inherit
25 changes: 25 additions & 0 deletions .github/workflows/release-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Release - Build & Push Image
on:
release:
branches:
- main
- master
types: [ published ]
jobs:
check-source-branch:
uses: kbase/.github/.github/workflows/reusable_validate-branch.yml@main
with:
build_branch: '${{ github.event.release.target_commitish }}'
validate-release-tag:
needs: check-source-branch
uses: kbase/.github/.github/workflows/reusable_validate-release-tag.yml@main
with:
release_tag: '${{ github.event.release.tag_name }}'
build-push:
needs: validate-release-tag
uses: kbase/.github/.github/workflows/reusable_build-push.yml@main
with:
name: '${{ github.event.repository.name }}'
tags: '${{ github.event.release.tag_name }},latest'
secrets: inherit
16 changes: 0 additions & 16 deletions .github/workflows/scripts/build_prodrc_pr.sh

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/scripts/build_test_pr.sh

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/scripts/deploy_tag.sh

This file was deleted.

Loading
Loading