Skip to content

Commit

Permalink
Do not do a Bazel Build on old OpenEXR branches (#1071)
Browse files Browse the repository at this point in the history
* Add license information for bazel build

Signed-off-by: Vertexwahn <julian.amann@tum.de>

* Do not perform CI Bazel builds on old OpenEXR versions

Signed-off-by: Vertexwahn <julian.amann@tum.de>
  • Loading branch information
Vertexwahn committed Jun 30, 2021
1 parent adf4ab9 commit 3f27ec4
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/bazel_build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) Contributors to the OpenEXR Project.
#
# GitHub Actions workflow file
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions

name: Bazel

on:
push: {}
push:
# Versioned branches and tags are ignored for OpenEXR <= 1.x.x
branches-ignore:
- RB-2.*
tags-ignore:
- v1.*
- v2.*
# Jobs are skipped when ONLY Markdown (*.md) files are changed
paths-ignore:
- '**.md'

jobs:
build:
Expand Down

0 comments on commit 3f27ec4

Please sign in to comment.