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

chore: release parent 0.1.1 #53

Merged
merged 3 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
13 changes: 7 additions & 6 deletions .github/workflows/java.build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
id: filter
with:
filters: |
amphora-parent: '(amphora-parent|.github)/**'
amphora-common: '(amphora-common|.github)/**'
amphora-java-client: '(amphora-java-client|.github)/**'
amphora-service: '(amphora-service|.github)/**'
parent: '(amphora-parent|.github)/**'
common: '(amphora-common|.github)/**'
java-client: '(amphora-java-client|.github)/**'
service: '(amphora-service|.github)/**'
test:
needs: changes
strategy:
Expand All @@ -56,9 +56,9 @@ jobs:
"password": "${{ secrets.GITHUB_TOKEN }}"
}]
- name: Build with Maven
run: ./mvnw install -pl ${{ matrix.module }} -Dskip.tests --batch-mode --update-snapshots --no-transfer-progress
run: ./mvnw install -pl ${GITHUB_REPOSITORY#*/}-${{ matrix.module }} -Dskip.tests --batch-mode --update-snapshots --no-transfer-progress
- name: Run Tests
run: ./mvnw verify -pl ${{ matrix.module }} --activate-profiles coverage --batch-mode --no-transfer-progress
run: ./mvnw verify -pl ${GITHUB_REPOSITORY#*/}-${{ matrix.module }} --activate-profiles coverage --batch-mode --no-transfer-progress
- name: Collect Jacoco reports
run: echo ::set-output name=reports::$(find . -regex '.*/target/site/jacoco/jacoco.xml' | tr '\n' ',' | sed 's/.$//')
id: jacoco
Expand All @@ -68,6 +68,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ steps.jacoco.outputs.reports }}
name: ${{ matrix.module }}
flags: ${{ matrix.module }}
test-status:
runs-on: ubuntu-22.04
needs: test
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "0.1.0",
"amphora-parent": "0.1.1",
"amphora-common": "0.1.0",
"amphora-java-client": "0.1.0",
"amphora-service": "0.1.0",
Expand Down
8 changes: 8 additions & 0 deletions amphora-parent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [0.1.1](https://github.com/carbynestack/amphora/compare/parent-v0.1.0...parent-v0.1.1) (2023-07-27)


### Bug Fixes

* **parent:** introduce parent release package ([ba73fe8](https://github.com/carbynestack/amphora/commit/ba73fe865470052ce2381d81de3017a6bb27e7fe))
6 changes: 2 additions & 4 deletions amphora-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@
~
~ SPDX-License-Identifier: Apache-2.0
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>amphora-parent</artifactId>
<groupId>io.carbynestack</groupId>
<version>0.1.0</version>
<version>0.1.1</version>
<packaging>pom</packaging>
<licenses>
<license>
Expand Down
16 changes: 16 additions & 0 deletions codecov.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
flag_management:
default_rules:
carryforward: true
individual_flags:
- name: parent
paths:
- amphora-parent/
- name: common
paths:
- amphora-common/
- name: java-client
paths:
- amphora-java-client/
- name: service
paths:
- amphora-service/
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"pull-request-header": ":package: Staging a new release",
"skip-snapshot": true,
"packages": {
".": {
"amphora-parent": {
"package-name": "parent",
"release-type": "maven"
},
Expand Down
Loading