-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COH-31609 Create a proper build pipeline on GitHub
(merge 14.1.1.0 -> ce/14.1.1.0 113572) [git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v14.1.1.0/": change = 113575]
- Loading branch information
1 parent
ec83705
commit 6ddd3fb
Showing
3 changed files
with
99 additions
and
39 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
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,36 @@ | ||
# Copyright 2020, 2025, Oracle Corporation and/or its affiliates. | ||
# | ||
# Licensed under the Universal Permissive License v 1.0 as shown at | ||
# http://oss.oracle.com/licenses/upl. | ||
|
||
# --------------------------------------------------------------------------- | ||
# Coherence CE GitHub Actions CI build. | ||
# --------------------------------------------------------------------------- | ||
|
||
name: CI Pipeline | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches-ignore: | ||
- gh-pages | ||
- p4-integ* | ||
- last-p4-* | ||
|
||
jobs: | ||
build: | ||
name: Parallel Build - Linux | ||
uses: ./.github/workflows/build.yaml | ||
secrets: inherit | ||
with: | ||
runner: ubuntu-latest | ||
|
||
deploy: | ||
if: github.repository == 'oracle/coherence' && (github.ref_name == 'main' || startsWith(github.ref_name, 'v1') || startsWith(github.ref_name, 'v2') || startsWith(github.ref_name, 'v3')) | ||
name: Deploy Snapshot | ||
uses: ./.github/workflows/deploy-snapshots.yaml | ||
with: | ||
runner: ubuntu-latest | ||
secrets: inherit | ||
needs: | ||
- build |
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