-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add maven coordinates for common library target.
- Loading branch information
Showing
4 changed files
with
125 additions
and
0 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,92 @@ | ||
# Copyright 2024 The Cross-Media Measurement Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
on: | ||
release: | ||
workflow_dispatch: | ||
inputs: | ||
base-version: | ||
description: Base artifact version, which will be suffixed with "-SNAPSHOT" | ||
required: true | ||
pull_request: | ||
types: [ opened, synchronize, edited ] | ||
|
||
jobs: | ||
publish-artifacts: | ||
name: Publish Maven artifacts | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- id: get-artifact-version | ||
env: | ||
BASE_VERSION: 0.86.0 | ||
run: | | ||
declare artifact_version | ||
if [[ "$GITHUB_EVENT_NAME" == 'release' ]]; then | ||
artifact_version="${GITHUB_REF_NAME#v}" | ||
else | ||
artifact_version="${BASE_VERSION}-SNAPSHOT" | ||
fi | ||
echo "artifact-version=${artifact_version}" >> "$GITHUB_OUTPUT" | ||
- name: Set up Bazel | ||
run: | | ||
mkdir -p ~/.local/bin | ||
bazelisk_path="$(which bazelisk)" | ||
ln -s "${bazelisk_path}" ~/.local/bin/bazel | ||
- name: Write ~/.bazelrc | ||
run: | | ||
echo 'common --config=ci' >> ~/.bazelrc | ||
- name: Get Bazel cache params | ||
id: get-cache-params | ||
uses: world-federation-of-advertisers/actions/bazel-get-cache-params@v2 | ||
with: | ||
cache-version: 1 | ||
|
||
- name: Restore Bazel cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ${{ steps.get-cache-params.outputs.cache-path }} | ||
key: ${{ steps.get-cache-params.outputs.cache-key }} | ||
restore-keys: |- | ||
${{ steps.get-cache-params.outputs.restore-key }} | ||
# Patch MODULE.bazel and MODULE.bazel.lock to specify version. | ||
# TODO(bazelbuild/bazel#22919): Use alternative mechanism when available. | ||
- name: Patch module version | ||
env: | ||
ARTIFACT_VERSION: ${{ steps.get-artifact-version.outputs.artifact-version }} | ||
run: | | ||
match='name = "common-jvm",' | ||
artifact_version_escaped="${ARTIFACT_VERSION}" | ||
sed -i "s/${match}/${match}\n version = \"${ARTIFACT_VERSION}\",/" MODULE.bazel | ||
module_hash="$(sha256sum MODULE.bazel | cut -d ' ' -f 1)" | ||
match='"moduleFileHash": "[^"]\+"' | ||
sed -i "s/${match}/\"moduleFileHash\": \"${module_hash}\"/" MODULE.bazel.lock | ||
- name: Echo diff | ||
run: git diff | ||
|
||
- name: Publish artifacts | ||
env: | ||
MAVEN_REPO: https://maven.pkg.github.com/${{ github.repository }} | ||
run: | | ||
bazel query "kind('^maven_publish', //src/main/...)" | xargs bazel run |
Empty file.
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,20 @@ | ||
# Copyright 2024 The Cross-Media Measurement Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""Defs for exporting to Maven.""" | ||
|
||
# buildifier: disable=unnamed-macro | ||
def artifact_version(): | ||
"""Returns the artifact version for libraries defined in this module.""" | ||
return native.module_version() or "0.0.0-SNAPSHOT" |
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