Skip to content

BH-4879 Added package to install #18

BH-4879 Added package to install

BH-4879 Added package to install #18

name: clp-core-build
on:
pull_request:
paths:
- ".github/actions/**"
- ".github/workflows/clp-core-build.yaml"
- "components/core/**"
- "!components/core/tools/scripts/lib_install/macos-12/**"
push:
paths:
- ".github/actions/**"
- ".github/workflows/clp-core-build.yaml"
- "components/core/**"
- "!components/core/tools/scripts/lib_install/macos-12/**"
workflow_dispatch:
env:
# Consider changes between the current commit and `main`
# NOTE: If a pull request changes the image, then we need to build the image and then build
# CLP using the changed image; otherwise we can build CLP using the published image. So when
# determining what files have changed, we use `main` rather than the previous commit to ensure
# that on every push to the PR, we can detect if the image was changed and use it to build
# and test CLP.
PATHS_FILTER_BASE: "main"
PATHS_FILTER_LIB_INSTALL_GLOB: "components/core/tools/scripts/lib_install/*.sh"
PATHS_FILTER_CLP_FILTER: |
clp:
- ".github/actions/**"
- ".github/workflows/clp-core-build.yaml"
- ".gitmodules"
- "components/core/cmake/**"
- "components/core/CMakeLists.txt"
- "components/core/src/**"
- "components/core/tests/**"
- "components/core/tools/scripts/deps-download/**"
- "components/core/tools/scripts/utils/build-and-run-unit-tests.sh"
# Currency group to prevent multiple workflow instances from trying to publish container images
concurrency: "${{github.workflow}}-${{github.ref}}"
jobs:
centos74:
runs-on: "ubuntu-latest"
services:
registry:
image: "registry:2"
ports: [ "5000:5000" ]
env:
OS_NAME: "centos7.4"
steps:
- uses: "actions/checkout@v3"
with:
submodules: "recursive"
- name: "Work around actions/runner-images/issues/6775"
run: "chown $(id -u):$(id -g) -R ."
shell: "bash"
- name: "Filter relevant changes"
uses: "dorny/paths-filter@v2"
id: "filter"
with:
base: "${{env.PATHS_FILTER_BASE}}"
filters: |
image:
- ".github/actions/**"
- ".github/workflows/clp-core-build.yaml"
- ${{env.PATHS_FILTER_LIB_INSTALL_GLOB}}
- "components/core/tools/docker-images/clp-env-base-${{env.OS_NAME}}/**"
- "components/core/tools/scripts/lib_install/${{env.OS_NAME}}/**"
${{inputs.PATHS_FILTER_CLP_FILTER}}
- uses: "./.github/actions/clp-core-build-deps-and-binaries"
with:
os_name: "${{env.OS_NAME}}"
deps_image_changed: "${{steps.filter.outputs.image}}"
push_binaries_image: false
local_registry_port: "5000"
token: "${{secrets.GITHUB_TOKEN}}"
ubuntu-focal:
runs-on: "ubuntu-latest"
services:
registry:
image: "registry:2"
ports: [ "5000:5000" ]
env:
OS_NAME: "ubuntu-focal"
steps:
- uses: "actions/checkout@v3"
with:
submodules: "recursive"
- name: "Work around actions/runner-images/issues/6775"
run: "chown $(id -u):$(id -g) -R ."
shell: "bash"
- name: "Filter relevant changes"
uses: "dorny/paths-filter@v2"
id: "filter"
with:
base: "${{env.PATHS_FILTER_BASE}}"
filters: |
image:
- ".github/actions/**"
- ".github/workflows/clp-core-build.yaml"
- ${{env.PATHS_FILTER_LIB_INSTALL_GLOB}}
- "components/core/tools/docker-images/clp-env-base-${{env.OS_NAME}}/**"
- "components/core/tools/scripts/lib_install/${{env.OS_NAME}}/**"
${{inputs.PATHS_FILTER_CLP_FILTER}}
- uses: "./.github/actions/clp-core-build-deps-and-binaries"
with:
os_name: "${{env.OS_NAME}}"
deps_image_changed: "${{steps.filter.outputs.image}}"
push_binaries_image: true
local_registry_port: "5000"
token: "${{secrets.GITHUB_TOKEN}}"
ubuntu-jammy:
runs-on: "ubuntu-latest"
services:
registry:
image: "registry:2"
ports: [ "5000:5000" ]
env:
OS_NAME: "ubuntu-jammy"
steps:
- uses: "actions/checkout@v3"
with:
submodules: "recursive"
- name: "Work around actions/runner-images/issues/6775"
run: "chown $(id -u):$(id -g) -R ."
shell: "bash"
- name: "Filter relevant changes"
uses: "dorny/paths-filter@v2"
id: "filter"
with:
base: "${{env.PATHS_FILTER_BASE}}"
filters: |
image:
- ".github/actions/**"
- ".github/workflows/clp-core-build.yaml"
- ${{env.PATHS_FILTER_LIB_INSTALL_GLOB}}
- "components/core/tools/docker-images/clp-env-base-${{env.OS_NAME}}/**"
- "components/core/tools/scripts/lib_install/${{env.OS_NAME}}/**"
${{inputs.PATHS_FILTER_CLP_FILTER}}
- uses: "./.github/actions/clp-core-build-deps-and-binaries"
with:
os_name: "${{env.OS_NAME}}"
deps_image_changed: "${{steps.filter.outputs.image}}"
push_binaries_image: false
local_registry_port: "5000"
token: "${{secrets.GITHUB_TOKEN}}"