Searched +full:publish +full:- +full:release +full:- +full:artifacts (Results 1 – 25 of 72) sorted by relevance
123
| /external/zstd/.github/workflows/ |
| D | publish-release-artifacts.yml | 1 name: publish-release-artifacts 4 release: 6 - published 8 permissions: read-all 11 publish-release-artifacts: 13 contents: write # to fetch code and upload artifacts 15 runs-on: ubuntu-latest 19 - name: Checkout 22 - name: Archive 28 export TAG="$(echo "$GITHUB_REF" | sed -n 's_^refs/tags/__p')" [all …]
|
| D | windows-artifacts.yml | 1 name: windows-artifacts 6 release: 8 - published 10 permissions: read-all 13 windows-artifacts: 14 # see https://ariya.io/2020/07/on-github-actions-with-msys2 15 runs-on: windows-latest 16 # see https://github.com/msys2/setup-msys2 20 - { msystem: mingw64, env: x86_64, ziparch: win64 } 21 - { msystem: mingw32, env: i686, ziparch: win32 } [all …]
|
| D | scorecards.yml | 1 name: Scorecards supply-chain security 6 - cron: '22 21 * * 2' 8 # TODO: Add release branch when supported? 12 permissions: read-all 18 runs-on: ubuntu-latest 20 # Needed to upload the results to code-scanning dashboard. 21 security-events: write 23 id-token: write 29 - name: "Checkout code" 32 persist-credentials: false [all …]
|
| /external/protobuf/protoc-artifacts/ |
| D | README.md | 1 # Build scripts that publish pre-compiled protoc artifacts 6 build and publish a ``protoc`` executable (a.k.a. artifact) to Maven 10 If you would like us to publish protoc artifact for a new platform, please send 14 * [build-protoc.sh](build-protoc.sh): script to cross-build the protoc for your 16 * [pom.xml](pom.xml): script to upload artifacts to maven. 17 * [build-zip.sh](build-zip.sh): script to package published maven artifacts in 18 our release page. 21 The published protoc artifacts are available on Maven here: 31 ``protoc-<version>-<os>-<arch>.exe``, e.g., ``protoc-3.6.1-linux-x86_64.exe``. 33 Note that artifacts for linux/macos also have the `.exe` suffix but they are [all …]
|
| /external/cronet/third_party/protobuf/protoc-artifacts/ |
| D | README.md | 1 # Build scripts that publish pre-compiled protoc artifacts 6 build and publish a ``protoc`` executable (a.k.a. artifact) to Maven 10 If you would like us to publish protoc artifact for a new platform, please send 14 * [build-protoc.sh](build-protoc.sh): script to cross-build the protoc for your 16 * [pom.xml](pom.xml): script to upload artifacts to maven. 17 * [build-zip.sh](build-zip.sh): script to package published maven artifacts in 18 our release page. 21 The published protoc artifacts are available on Maven here: 31 ``protoc-<version>-<os>-<arch>.exe``, e.g., ``protoc-3.6.1-linux-x86_64.exe``. 33 Note that artifacts for linux/macos also have the `.exe` suffix but they are [all …]
|
| /external/ktfmt/.github/workflows/ |
| D | publish_artifacts_on_release.yaml | 1 # When a new release is created, publish artifacts to Maven Central / JetBrains Marketplace / etc.. 5 # 2. OSSRH_GPG_SECRET_KEY - private key for signing Maven artifacts 6 # 3. OSSRH_GPG_SECRET_KEY_PASSWORD - password for unlocking OSSRH_GPG_SECRET_KEY 7 # 4. JETBRAINS_MARKETPLACE_TOKEN - token obtained from https://plugins.jetbrains.com/author/me/toke… 9 name: Publish package to Maven Central and JetBrains Marketplace 11 release: 16 description: 'Release tag' 20 publish: 21 runs-on: ubuntu-latest 23 - uses: actions/checkout@v4 [all …]
|
| /external/rust/crates/flate2/ |
| D | MAINTENANCE.md | 3 ### Creating a new release 5 #### Artifacts subsubsection 12 To generate all the artifacts above, one proceeds as follows: 14 1. `git checkout -b release-<next-version>` - move to a branch to prepare making changes to the rep… 17 4. `cargo publish` to create a new release on `crates.io`. 18 5. `git tag <next-version>` to remember the commit. 19 6. `git push --tags` to push the new tag. 20 …o the newly created release page on GitHub and edit it by pressing the "Generate Release Notes" an…
|
| /external/dagger2/.github/workflows/ |
| D | release.yml | 1 name: Dagger Release 7 description: 'The Dagger version to use in this release.' 20 # https://issues.apache.org/jira/browse/MNG-7679 26 validate-latest-dagger-version: 28 runs-on: ubuntu-latest 30 - uses: actions/checkout@v3 31 - uses: ./.github/actions/prechecks 32 bazel-build: 34 needs: validate-latest-dagger-version 35 runs-on: ubuntu-latest [all …]
|
| /external/google-cloud-java/.kokoro/release/ |
| D | stage_oss_sonatype_org.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -eo pipefail 18 # This stage_oss_sonatype_org.sh publishes the artifacts to oss.sonatype.org publishing 27 python3 -m pip install --require-hashes -r $requirementsFile 28 python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script 37 echo "Deploying non-Cloud artifacts to staging repositories in oss.sonatype.org" 39 # Lists modules for Google Maps artifacts, including their submodules. 40 IncludedNonCloudModules=$(find java-maps-* -name 'pom.xml' \ 41 |sed -e 's|/pom.xml$||' |xargs |sed -e 's/ /,/g') 44 mvn clean deploy -B \ [all …]
|
| D | stage_google_oss_sonatype_org.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -eo pipefail 20 python3 -m pip install --require-hashes -r $requirementsFile 21 python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script 30 echo "Deploying artifacts to staging repositories in google.oss.sonatype.org" 34 # https://github.com/googleapis/google-cloud-java/issues/9045 35 excludedNonCloudModules=$(find java-maps-* -name 'pom.xml' \ 36 |sed -e 's/^/!/' -e 's|/pom.xml$||' |xargs |sed -e 's/ /,/g') 39 mvn clean deploy -B \ 40 -DskipTests=true \ [all …]
|
| /external/opencensus-java/ |
| D | RELEASING.md | 1 # How to Create a Release of OpenCensus Java (for Maintainers Only) 7 - Ubuntu 14.04 15 If you haven't deployed artifacts to Maven Central before, you need to setup 18 - Follow the instructions on [this 19 page](http://central.sonatype.org/pages/ossrh-guide.html) to set up an 21 - You only need to create the account, not set up a new project 22 - Contact a OpenCensus Java maintainer to add your account after you 24 - (For release deployment only) [Install 25 GnuPG](http://central.sonatype.org/pages/working-with-pgp-signatures.html#installing-gnupg) 27 pair](http://central.sonatype.org/pages/working-with-pgp-signatures.html#generating-a-key-pair). [all …]
|
| /external/grpc-grpc-java/buildscripts/kokoro/ |
| D | windows64.bat | 3 @rem Builds artifacts for x86_64 into %WORKSPACE%\artifacts\ 12 set WORKSPACE=T:\src\github\grpc-java 19 mkdir grpc-java-helper64 20 cd grpc-java-helper64 28 SET VC_PROTOBUF_LIBS=%ESCWORKSPACE%\\grpc-java-helper64\\protobuf-%PROTOBUF_VER%\\build\\Release 29 SET VC_PROTOBUF_INCLUDE=%ESCWORKSPACE%\\grpc-java-helper64\\protobuf-%PROTOBUF_VER%\\build\\include 30 …LAGS=-PtargetArch=%TARGET_ARCH% -PfailOnWarnings=%FAIL_ON_WARNINGS% -PvcProtobufLibs=%VC_PROTOBUF_… 31 SET GRADLE_OPTS="-Dorg.gradle.jvmargs='-Xmx1g'" 34 cmd.exe /C "%WORKSPACE%\gradlew.bat --stop" 36 …RADLE_FLAGS% -Dorg.gradle.parallel=false -PrepositoryDir=%WORKSPACE%\artifacts grpc-compiler:clean…
|
| D | windows32.bat | 3 @rem Runs tests and then builds artifacts to %WORKSPACE%\artifacts\ 12 set WORKSPACE=T:\src\github\grpc-java 20 mkdir grpc-java-helper32 21 cd grpc-java-helper32 29 SET VC_PROTOBUF_LIBS=%ESCWORKSPACE%\\grpc-java-helper32\\protobuf-%PROTOBUF_VER%\\build\\Release 30 SET VC_PROTOBUF_INCLUDE=%ESCWORKSPACE%\\grpc-java-helper32\\protobuf-%PROTOBUF_VER%\\build\\include 31 …LAGS=-PtargetArch=%TARGET_ARCH% -PfailOnWarnings=%FAIL_ON_WARNINGS% -PvcProtobufLibs=%VC_PROTOBUF_… 32 SET GRADLE_OPTS="-Dorg.gradle.jvmargs='-Xmx1g'" 39 for /r %%F in (TEST-*.xml) do ( 50 cmd.exe /C "%WORKSPACE%\gradlew.bat --stop" [all …]
|
| /external/accessibility-test-framework/ |
| D | build.gradle | 8 classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.14' 9 classpath 'digital.wup:android-maven-publish:3.6.3' 46 all().each { task -> 56 // Creates the source jar for release to maven central. 68 // Creates the source javadoc jar for release to maven central. 73 apply plugin: 'digital.wup.android-maven-publish' 74 apply plugin: 'maven-publish' 76 // Creates the artifacts for release to maven central. 81 artifactId 'accessibility-test-framework' 89 url = 'https://github.com/google/Accessibility-Test-Framework-for-Android' [all …]
|
| /external/mobly-snippet-lib/third_party/sl4a/ |
| D | build.gradle | 9 id 'com.github.sherter.google-java-format' version '0.9' 10 id 'maven-publish' 25 // Need to set up some project properties to publish to bintray. 36 include "arm64-v8a", "armeabi-v7a", "armeabi" 71 options.addStringOption('Xdoclint:none', '-quiet') 72 options.addStringOption('encoding', 'UTF-8') 73 options.addStringOption('charSet', 'UTF-8') 82 artifacts { 91 release(MavenPublication) { 95 from components.release [all …]
|
| /external/kotlinpoet/.github/workflows/ |
| D | release.yml | 1 name: Release 6 - main 8 - '**' 11 GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" 14 publish: 15 runs-on: ubuntu-latest 19 - name: Checkout 22 - name: Configure JDK 23 uses: actions/setup-java@v4 26 java-version: 19 [all …]
|
| /external/pigweed/pw_software_update/ |
| D | guides.rst | 1 .. _module-pw_software_update-guides: 3 ------------------------- 5 ------------------------- 6 .. pigweed-module-subpage:: 13 High-level steps 14 ---------------- 16 Setting up an end-to-end software delivery system can seem overwhelming, but 17 generally involves the following high-level steps. 31 :ref:`Getting started <module-pw_software_update-get-started>` and 32 :ref:`Design <module-pw_software_update-design>` sections can help you with [all …]
|
| /external/conscrypt/release/ |
| D | README.md | 1 How to Create a Conscrypt Release 4 One-Time Setup 5 -------------- 12 running all three. The 1.0.0 release was made with the following configuration: 22 <!-- TODO(flooey): Expand and link these, there's probably more --> 29 If you haven't deployed artifacts to Maven Central before, you need to setup 31 - Follow the instructions on [this 32 page](http://central.sonatype.org/pages/ossrh-guide.html) to set up an 34 - You only need to create the account, not set up a new project 35 - Contact a Conscrypt maintainer to add your account after you have created it. [all …]
|
| /external/grpc-grpc-java/alts/ |
| D | build.gradle | 2 id "java-library" 3 id "maven-publish" 13 api project(':grpc-core') 14 implementation project(':grpc-auth'), 15 project(':grpc-grpclb'), 16 project(':grpc-protobuf'), 17 project(':grpc-stub'), 20 libraries.guava.jre, // JRE required by protobuf-java-util from grpclb 22 def nettyDependency = implementation project(':grpc-netty') 26 shadow project(path: ':grpc-netty-shaded', configuration: 'shadow') [all …]
|
| /external/conscrypt/ |
| D | BUILDING.md | 13 To publish the artifacts to your Maven local repository for use in your own project, run: 20 ------------- 38 [prerequisites](https://boringssl.googlesource.com/boringssl/+/HEAD/BUILDING.md#Build-Prerequisites… 54 To build the 64-bit version on a 64-bit machine: 58 cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE \ 59 -DCMAKE_BUILD_TYPE=Release \ 60 -DCMAKE_ASM_FLAGS=-Wa,--noexecstack \ 61 -GNinja .. 73 cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE \ 74 -DCMAKE_BUILD_TYPE=Release \ [all …]
|
| /external/accompanist/docs/ |
| D | using-snapshot-version.md | 17 classpath 'com.google.accompanist:accompanist-coil:XXX-SNAPSHOT' 23 …-SNAPSHOT` is a build from the `main` branch, and depends on the latest tagged Jetpack Compose rel… 24 * `0.3.0.compose-6574163-SNAPSHOT` is a build from the `snapshot` branch. This depends on the [SNAP… 28 …libraries, you might run into issues with the current stable Accompanist release forcing an older … 30 …publish snapshot versions of Accompanist which depend on recent Jetpack Compose SNAPSHOT repositor… 41 classpath 'com.google.accompanist:accompanist-coil:XXXX.compose-YYYYY-SNAPSHOT' 47 *Note:* you might also see versions in the scheme `x.x.x.ui-YYYY-SNAPSHOT`. These are the same, jus…
|
| /external/volley/ |
| D | publish.gradle | 1 apply plugin: 'maven-publish' 14 javadoc.classpath += files(android.libraryVariants.collect { variant -> 24 artifacts { 41 url = "http://www.apache.org/licenses/LICENSE-2.0.txt" 57 // Release AAR, Sources, and JavaDoc
|
| /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/ |
| D | CONTRIBUTING.md | 5 1. Fork web-animations/web-animations-js. 6 1. `git clone git@github.com:$GITHUB_USER/web-animations-js.git` 7 1. `git submodule update --init --recursive` (Necessary for running tests.) 10 1. Run `npm install -g grunt-cli` to get the build tools for the command line. 17 1. In your fork of web-animations-js, `git checkout dev` or create a new branch whose parent is dev. 19 1. Run `grunt test` to run polyfill and web-platform-tests tests. 21 1. Create a pull request from your fork of web-animations-js to 22 …[web-animations/web-animations-js/dev](https://github.com/web-animations/web-animations-js/tree/de… 36 Example: `grunt debug:web-animations-next:test/web-platform-tests/web-animations/animation/pause.ht… 38 Example: `http://localhost:9876/base/test/web-platform-tests/web-animations/animation/pause.html` [all …]
|
| /external/curl/ |
| D | appveyor.yml | 14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell 21 # SPDX-License-Identifier: curl 27 # https://www.appveyor.com/docs/appveyor-yml/ 29 # https://www.appveyor.com/docs/windows-images-software/ 39 # generated CMake-based Visual Studio Release builds 40 - job_name: 'CMake, VS2008, Release, x86, Schannel, Build-only' 44 PRJ_CFG: Release 51 - job_name: 'CMake, VS2008, Debug, x86, Schannel, Build-only' 62 - job_name: 'CMake, VS2022, Release, x64, OpenSSL 3.2, WebSockets, Build-only' 66 TARGET: '-A x64' [all …]
|
| /external/python/parse_type/tasks/ |
| D | release.py | 1 # -*- coding: UTF-8 -*- 10 twine register dist/{project}-{version}.tar.gz 13 twine upload --skip-existing dist/* 16 # -- DEPRECATED: No longer supported -> Use RTD instead 17 # -- DEPRECATED: python setup.py upload_docs 27 .. code-block:: init 29 # -- FILE: $HOME/.pypirc 31 index-servers = 49 * https://packaging.python.org/tutorials/distributing-packages/ 58 # ----------------------------------------------------------------------------- [all …]
|
123