zips corruption test #14
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
# 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 | |
# Skip the run on *.md changes and on changes to the website, *except* | |
# for "website/src", since that code needs validation. There's a | |
# separate workflow for with website. | |
on: | |
push: | |
branches-ignore: | |
- RB-2.* | |
tags-ignore: | |
- v1.* | |
- v2.* | |
paths: | |
- '**' | |
- '!**.md' | |
- '!website/**' | |
- 'website/src/**' | |
- '!src/wrappers/**' | |
pull_request: | |
branches-ignore: | |
- RB-2.* | |
tags-ignore: | |
- v1.* | |
- v2.* | |
paths: | |
- '**' | |
- '!**.md' | |
- '!website/**' | |
- 'website/src/**' | |
- '!src/wrappers/**' | |
permissions: | |
contents: read | |
jobs: | |
build_and_test_ubuntu: | |
name: Linux Ubuntu 22.04 Bazel build <GCC 11.4.0> | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "/home/runner/.cache/bazel" | |
key: bazel-ubuntu-22 | |
- name: Build | |
run: | | |
bazelisk build //... | |
bazelisk test //... | |
# Test without bzlmod | |
bazelisk build --noenable_bzlmod -- //... | |
bazelisk test --noenable_bzlmod -- //... | |
build_and_test_windows: | |
name: Windows Server 2022 build <Visual Studio 2022> | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "/home/runner/.cache/bazel" | |
key: bazel-windows-2022 | |
- name: Build | |
run: | | |
bazelisk build //... | |
bazelisk test //... | |
# Test without bzlmod | |
bazelisk build --noenable_bzlmod -- //... | |
bazelisk test --noenable_bzlmod -- //... | |
build_and_test_macos: | |
name: macOS 13 Bazel build <Apple Clang14> | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mount Bazel cache | |
uses: actions/cache@v3 | |
with: | |
path: "/home/runner/.cache/bazel" | |
key: bazel-macos-13 | |
- name: Build | |
run: | | |
bazelisk build //... | |
bazelisk test //... | |
# Test without bzlmod | |
bazelisk build --noenable_bzlmod -- //... | |
bazelisk test --noenable_bzlmod -- //... |