forked from AcademySoftwareFoundation/Imath
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (55 loc) · 1.53 KB
/
ci_fetchcontent.yml
File metadata and controls
65 lines (55 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) Contributors to the OpenEXR Project.
#
name: CI-fetchcontent
#
# Test that Imath is configured properly for FetchContent
#
on:
push:
paths:
- '**'
- '!**.md'
- '!share/ci/**'
- '!.github/workflows/**'
- '.github/workflows/ci_fetchcontent.yml'
pull_request:
paths:
- '**'
- '!**.md'
- '!share/ci/**'
- '!.github/workflows/**'
- '.github/workflows/ci_fetchcontent.yml'
permissions:
contents: read
jobs:
build:
name: FetchContent on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Configure & Build
shell: bash
run: |
set -x
if [[ "$RUNNER_OS" == "Windows" ]]; then
WORKSPACE=$(cygpath -u "$GITHUB_WORKSPACE")
else
WORKSPACE=$GITHUB_WORKSPACE
fi
BUILD_DIR=$WORKSPACE/_build
IMATH_TAG="$(git rev-parse --abbrev-ref HEAD)"
IMATH_REPO=https://github.com/$GITHUB_REPOSITORY
IMATH_BUILD_TESTING=OFF
cmake -S src/ImathTest -B $BUILD_DIR \
-DIMATH_REPO=$IMATH_REPO -DIMATH_TAG=$IMATH_TAG
cmake --build $BUILD_DIR --config Release
if [[ "$RUNNER_OS" == "Windows" ]]; then
$BUILD_DIR/bin/Release/ImathTest.exe
else
$BUILD_DIR/bin/ImathTest
fi