Skip to content

Commit c49f578

Browse files
committed
conflict
2 parents 58a9aeb + b5d6d27 commit c49f578

File tree

113 files changed

+4327
-320
lines changed

Some content is hidden

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

113 files changed

+4327
-320
lines changed

.github/release.yml

-24
This file was deleted.

.github/workflows/mixed_mode_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Checkout Main
4141
run: git checkout main
4242
- name: Update release notes
43-
run: python build/publish-mixed-mode-results.py ${{ inputs.tag }} --release-notes docs/ReleaseNotes.md --commit --run-link ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
43+
run: python build/publish-mixed-mode-results.py ${{ inputs.tag }} --release-notes docs/sphinx/source/ReleaseNotes.md --commit --run-link ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
4444
- name: Push release notes update
4545
run: git push
4646

.github/workflows/patch_release.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,25 @@ jobs:
2323
with:
2424
ref: ${{ inputs.branch }}
2525
ssh-key: ${{ secrets.DEPLOY_KEY }}
26+
fetch-tags: true
27+
# fetch all the history to make sure that we have the last release
28+
# I tried fetching part of the history, but I just couldn't get it to work, and fetching all still takes like 5s
29+
fetch-depth: 0
2630
- name: Setup Base Environment
2731
uses: ./actions/setup-base-env
2832
- name: Setup FDB
2933
uses: ./actions/setup-fdb
30-
31-
# Push a version bump back to main. There are failure scenarios that can result
32-
# in published artifacts but an erroneous build, so it's safer to bump the version
33-
# at the beginning
3434
- name: Configure Git
3535
run: |
3636
git config --global user.name 'FoundationDB CI'
3737
git config --global user.email '[email protected]'
38-
- name: Increment Version
39-
run: python build/versionutils.py gradle.properties -u PATCH --increment --commit
40-
- name: Push Version Update
41-
run: git push
4238
4339
- name: Build and publish release
4440
uses: ./actions/release-build-publish
4541
with:
4642
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
4743
gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
44+
update_type: PATCH
4845
env:
4946
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5047
MAVEN_USER: ${{ secrets.MAVEN_USER }}

.github/workflows/pr_labels.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Pull Request Labels
2+
3+
on:
4+
pull_request:
5+
types: [opened, labeled, unlabeled]
6+
7+
jobs:
8+
labels:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
checks: write
12+
contents: read
13+
pull-requests: read
14+
steps:
15+
- name: Checkout sources
16+
uses: actions/[email protected]
17+
with:
18+
sparse-checkout: build/release-notes-config.json
19+
- name: Check Labels
20+
uses: actions/github-script@v7
21+
with:
22+
script: |
23+
// Gather required labels from release notes configuration
24+
const releaseNotesConfig = require('./build/release-notes-config.json');
25+
var requiredLabels = new Set();
26+
releaseNotesConfig.categories
27+
.flatMap(category => category.labels)
28+
.forEach(label => requiredLabels.add(label));
29+
30+
// Check if the current PR has a label in the required set
31+
const pr_labels = context.payload.pull_request.labels.map(l => l.name);
32+
if (!pr_labels.some(l => requiredLabels.has(l))) {
33+
core.setFailed("PR is not labeled with any of the required labels: " + JSON.stringify(Array.from(requiredLabels)));
34+
}

.github/workflows/release.yml

+34-10
Original file line numberDiff line numberDiff line change
@@ -10,38 +10,62 @@ jobs:
1010
checks: write
1111
contents: write
1212
packages: write
13-
pages: write
1413
pull-requests: write
1514
steps:
1615
- name: Checkout sources
1716
uses: actions/[email protected]
1817
with:
1918
ssh-key: ${{ secrets.DEPLOY_KEY }}
19+
fetch-tags: true
20+
# fetch all the history to make sure that we have the last release
21+
# I tried fetching part of the history, but I just couldn't get it to work, and fetching all still takes like 5s
22+
fetch-depth: 0
2023
- name: Setup Base Environment
24+
id: setup-base
2125
uses: ./actions/setup-base-env
2226
- name: Setup FDB
2327
uses: ./actions/setup-fdb
24-
25-
# Push a version bump back to main. There are failure scenarios that can result
26-
# in published artifacts but an erroneous build, so it's safer to bump the version
27-
# at the beginning
2828
- name: Configure git
2929
run: |
3030
git config --global user.name 'FoundationDB CI'
3131
git config --global user.email '[email protected]'
32-
- name: Increment version
33-
run: python build/versionutils.py gradle.properties --increment --commit
34-
- name: Push version increment
35-
run: git push
3632
3733
- name: Build and publish
3834
uses: ./actions/release-build-publish
3935
with:
4036
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
4137
gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
38+
update_type: BUILD
4239
env:
4340
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4441
MAVEN_USER: ${{ secrets.MAVEN_USER }}
4542
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
4643

47-
# TODO: Publish documentation updates
44+
# Build documentation.
45+
- name: Cache Python Environment
46+
uses: actions/cache@v4
47+
with:
48+
path: docs/sphinx/.venv
49+
key: ${{ runner.os }}-sphinx-python-${{ steps.setup-base.outputs.python-version }}-${{ hashFiles('docs/sphinx/requirements.txt') }}
50+
- name: Build Documentation Site
51+
uses: ./actions/run-gradle
52+
with:
53+
gradle_command: documentationSite -PreleaseBuild=true
54+
- name: Upload Documentation
55+
id: doc_upload
56+
uses: actions/upload-pages-artifact@v3
57+
with:
58+
path: docs/sphinx/.out/html/
59+
60+
deploy_docs:
61+
runs-on: ubuntu-latest
62+
needs: gradle
63+
permissions:
64+
pages: write
65+
id-token: write
66+
environment:
67+
name: github-pages
68+
url: ${{ steps.doc_upload.outputs.page_url }}
69+
steps:
70+
- name: Deploy Documentation
71+
uses: actions/deploy-pages@v4

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*.jar
55
*.war
66
*.ear
7+
*.deb
78

89
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
910
hs_err_pid*
@@ -44,6 +45,11 @@ atlassian-ide-plugin.xml
4445
.idea/scala_settings.xml
4546
.idea/shelf
4647

48+
# Built during documentation
49+
/docs/sphinx/.venv
50+
/docs/sphinx/source/api/**/index.md
51+
*.diagram.svg
52+
4753
# VSCode specific files/directories
4854
.vscode
4955
**/bin

CONTRIBUTING.md

+23-7
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ importantly, it keeps the community open and communicative.
7171

7272
### Opening a Pull Request
7373

74-
When opening a pull request (PR), please ensure that the title of the pull request
74+
When opening a pull request (PR), please ensure that the description of the pull request
7575
or the commit message indicates the issue that it is addressing (see
7676
[Closing issues with keywords](https://help.github.com/articles/closing-issues-using-keywords/)).
7777
For example:
@@ -82,12 +82,28 @@ This will automatically create an association between the PR and the issue that
8282
it is addressing and, upon merging of the PR into the main code line, will
8383
automatically mark the issue as resolved.
8484

85-
If your pull request results in a user-visible change to the Record Layer, you should
86-
also update the [release notes](docs/ReleaseNotes.md). For most changes, it
87-
is sufficient to fill in one of the bullets in the "next release" section of that
88-
document. You should include a short description of the change as well as filling in
89-
the issue number. The "next release" section is commented out, so the change won't
90-
be visible in our documentation until the next time a release is cut.
85+
PRs should have titles that clearly indicate what the change is accomplishing
86+
as we use these to generate release notes. You can glance at
87+
[release notes](docs/sphinx/source/ReleaseNotes.md) for inspiration.
88+
89+
They should also have one of the following labels:
90+
- `breaking change`: For any breaking change
91+
- `enhancement`: For any new feature or enhancement
92+
- `bug fix`: For bug fixes
93+
- `performance`: For performance improvements
94+
- `dependencies`: For updates to dependency versions
95+
- `build improvement`: For updates to our build system that shouldn't have user visible impacts
96+
- `testing improvement`: For new test coverage, or improvements to testing infrastructure
97+
- `documentation`: For improvements to our documentation
98+
99+
(Note: `build improvement`/`testing improvement`/`documentation` are combined in one
100+
grouping in the release notes, that is collapsed).
101+
102+
[release-notes-config.json](build/release-notes-config.json) describes how labels are
103+
converted into categories in the release notes.
104+
If a PR has multiple labels, it will appear in the first grouping as listed above /
105+
in [release-notes-config.json](build/release-notes-config.json) (i.e., if it is has
106+
`enhancement` and `dependencies`, it will only appear under `enhancement`).
91107

92108
### Reporting issues
93109

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ layer on which more complex systems can be constructed.
3939

4040
## Documentation
4141

42-
* [Documentation Home](docs/index.md)
42+
* [Documentation Home](docs/sphinx/source/index.md)
4343
* [Contributing](CONTRIBUTING.md)
4444
* [Code of Conduct](CODE_OF_CONDUCT.md)
4545
* [License](LICENSE)

actions/release-build-publish/action.yml

+60-16
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,58 @@ inputs:
77
gpg_passphrase:
88
description: 'GPG passphrase for artifact signing'
99
required: true
10+
update_type:
11+
description: 'One of MAJOR, MINOR, BUILD, PATCH'
12+
required: true
1013

1114
runs:
1215
using: "composite"
1316
steps:
14-
- name: Get version
15-
id: get_version
17+
- name: Get old version
18+
id: get_old_version
19+
shell: bash
20+
run: |
21+
echo "version=$(python build/versionutils.py gradle.properties)" >> "$GITHUB_OUTPUT"
22+
# Push a version bump back to main. There are failure scenarios that can result
23+
# in published artifacts but an erroneous build, so it's safer to bump the version
24+
# at the beginning
25+
- name: Increment version
26+
shell: bash
27+
run: python build/versionutils.py gradle.properties --increment --commit -u ${{ inputs.update_type }}
28+
- name: Get new version
29+
id: get_new_version
1630
shell: bash
1731
run: |
1832
echo "version=$(python build/versionutils.py gradle.properties)" >> "$GITHUB_OUTPUT"
33+
# We also want to push the tag, because that will be used for the next release's release notes
34+
- name: Create tag
35+
shell: bash
36+
run: git tag -m "Release ${{ steps.get_new_version.outputs.version }}" -f "${{ steps.get_new_version.outputs.version }}"
37+
38+
# We want to do this before anything else, because if the later steps fail, we want to make sure that the full
39+
# change log includes all changes, even if they reference a release that was never actually published.
40+
- name: Update release notes
41+
shell: bash
42+
run: |
43+
python ./build/create_release_notes.py \
44+
--config ./build/release-notes-config.json \
45+
--release-notes-md docs/sphinx/source/ReleaseNotes.md \
46+
--skip-commit $(git log -n 1 --format=%H HEAD) \
47+
--repository ${{ github.repository }} \
48+
--commit \
49+
${{ steps.get_old_version.outputs.version }} ${{ steps.get_new_version.outputs.version }}
50+
# We move the tag to after the release notes are updated so that later steps (i.e. sphinx) will pick up the udpated
51+
# release notes
52+
- name: Move tag to HEAD
53+
shell: bash
54+
run: git tag -m "Release ${{ steps.get_new_version.outputs.version }}" -f "${{ steps.get_new_version.outputs.version }}"
55+
56+
# push the changes to gradle.properties, the release notes, and the tag as one operation, so if it fails,
57+
# it will be as if the release never did anything
58+
- name: Push Version Update
59+
shell: bash
60+
run: git push origin HEAD "${{ steps.get_new_version.outputs.version }}"
61+
1962
- name: Run Gradle Test
2063
uses: ./actions/gradle-test
2164
with:
@@ -29,36 +72,37 @@ runs:
2972
ORG_GRADLE_PROJECT_signingPassword: ${{ inputs.gpg_passphrase }}
3073

3174
# Post release: Update various files which reference version
32-
- name: Update release notes
33-
shell: bash
34-
run: ARTIFACT_VERSION="${{ steps.get_version.outputs.version }}" ./build/update_release_notes.bash
75+
# Updating the yaml files has to be done after the tests complete, or it will mark tests as failing that aren't
76+
# supported by the previous version.
3577
- name: Update YAML test file versions
3678
uses: ./actions/run-gradle
3779
with:
3880
gradle_command: updateYamsql -PreleaseBuild=true
3981
- name: Commit YAML updates
4082
shell: bash
41-
run: python ./build/commit_yamsql_updates.py "${{ steps.get_version.outputs.version }}"
83+
run: python ./build/commit_yamsql_updates.py "${{ steps.get_new_version.outputs.version }}"
4284

43-
# Create and push the tag
44-
- name: Create tag
45-
shell: bash
46-
run: git tag -m "Release ${{ steps.get_version.outputs.version }}" -f "${{ steps.get_version.outputs.version }}"
47-
- name: Push tag
48-
shell: bash
49-
run: git push origin "${{ steps.get_version.outputs.version }}"
5085
- name: Push Updates
5186
id: push_updates
5287
shell: bash
5388
run: git push origin
89+
# Continue the build (including downstream steps). If the push fails, we'll create a PR
90+
continue-on-error: true
5491
- name: Create Merge PR if conflict
55-
if: failure() && steps.push_updates.conclusion == 'failure'
92+
# Only create the PR if we've otherwise been successful, but the push failed. Note that
93+
# we're checking the .outcome of the push step, which is applied before continue-on-error.
94+
if: success() && steps.push_updates.outcome == 'failure'
5695
uses: peter-evans/create-pull-request@bb88e27d3f9cc69c8bc689eba126096c6fe3dded
5796
id: pr_on_conflict
5897
with:
5998
branch: release-build
6099
branch-suffix: timestamp
61-
title: "Updates for ${{ steps.get_version.outputs.version }} release"
100+
title: "Updates for ${{ steps.get_new_version.outputs.version }} release"
62101
sign-commits: true
63102
body: |
64-
Updates from release for version ${{ steps.get_version.outputs.version }}. Conflicts during the build prevented automatic updating. Please resolve conflicts by checking out the current branch, merging, and then deleting this branch.
103+
Updates from release for version ${{ steps.get_new_version.outputs.version }}. Conflicts during the build prevented automatic updating. Please resolve conflicts by checking out the current branch, merging, and then deleting this branch.
104+
105+
# Creating the PR can change the current branch. Explicitly check out the tag here for downstream builds
106+
- name: Revert to tag
107+
shell: bash
108+
run: git checkout "${{ steps.get_new_version.outputs.version }}"

actions/setup-base-env/action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Setup Base Environment
22

3+
outputs:
4+
python-version:
5+
value: ${{ steps.setup-python.outputs.python-version }}
6+
37
runs:
48
using: "composite"
59
steps:
@@ -11,6 +15,7 @@ runs:
1115
- name: Setup Gradle
1216
uses: gradle/actions/setup-gradle@0bdd871935719febd78681f197cd39af5b6e16a6
1317
- name: Setup Python
18+
id: setup-python
1419
uses: actions/setup-python@v5
1520
with:
1621
python-version: '3.13'

0 commit comments

Comments
 (0)