|
| 1 | +name: macOS-Release-shared |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + paths-ignore: |
| 6 | + - 'README.md' |
| 7 | + - 'doc/**' |
| 8 | + pull_request: |
| 9 | + paths-ignore: |
| 10 | + - 'README.md' |
| 11 | + - 'doc/**' |
| 12 | + |
| 13 | +env: |
| 14 | + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) |
| 15 | + BUILD_TYPE: Release |
| 16 | + |
| 17 | +jobs: |
| 18 | + |
| 19 | + build-openexr2: |
| 20 | + |
| 21 | + runs-on: macos-latest |
| 22 | + |
| 23 | + steps: |
| 24 | + |
| 25 | + # - name: uninstall openexr |
| 26 | + # run: brew uninstall --ignore-dependencies openexr |
| 27 | + |
| 28 | + # - name: uninstall imath |
| 29 | + # run: brew uninstall --ignore-dependencies imath |
| 30 | + |
| 31 | + - name: install dependencies - openexr v2.5 |
| 32 | + run: | |
| 33 | + cd .. |
| 34 | + git clone https://github.com/AcademySoftwareFoundation/openexr.git && |
| 35 | + cd openexr && |
| 36 | + git checkout RB-2.5 && |
| 37 | + mkdir build && |
| 38 | + cd build && |
| 39 | + cmake -DBUILD_SHARED_LIBS=OFF .. && |
| 40 | + make && |
| 41 | + sudo make install |
| 42 | +
|
| 43 | + - uses: actions/checkout@v4 |
| 44 | + |
| 45 | + - name: Configure CMake |
| 46 | + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |
| 47 | + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |
| 48 | + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_SHARED_LIBS=OFF |
| 49 | + |
| 50 | + - name: Build |
| 51 | + # Build your program with the given configuration |
| 52 | + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
| 53 | + |
| 54 | + build-openexr3: |
| 55 | + runs-on: macos-latest |
| 56 | + |
| 57 | + steps: |
| 58 | + |
| 59 | + - name: install dependencies - imath |
| 60 | + run: | |
| 61 | + cd .. |
| 62 | + git clone https://github.com/AcademySoftwareFoundation/Imath.git && |
| 63 | + cd Imath && |
| 64 | + mkdir build && |
| 65 | + cd build && |
| 66 | + cmake -DBUILD_SHARED_LIBS=OFF .. && |
| 67 | + make && |
| 68 | + sudo make install |
| 69 | +
|
| 70 | + - name: install dependencies - openexr v3.1 |
| 71 | + run: | |
| 72 | + cd .. |
| 73 | + git clone https://github.com/AcademySoftwareFoundation/openexr.git && |
| 74 | + cd openexr && |
| 75 | + git checkout RB-3.1 && |
| 76 | + mkdir build && |
| 77 | + cd build && |
| 78 | + cmake -DBUILD_SHARED_LIBS=OFF .. && |
| 79 | + make && |
| 80 | + sudo make install |
| 81 | +
|
| 82 | + - uses: actions/checkout@v4 |
| 83 | + |
| 84 | + - name: Configure CMake |
| 85 | + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |
| 86 | + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |
| 87 | + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_SHARED_LIBS=OFF |
| 88 | + |
| 89 | + - name: Build |
| 90 | + # Build your program with the given configuration |
| 91 | + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
| 92 | + |
| 93 | + test-openexr2: |
| 94 | + |
| 95 | + runs-on: macos-latest |
| 96 | + |
| 97 | + steps: |
| 98 | + |
| 99 | + # - name: uninstall openexr |
| 100 | + # run: brew uninstall --ignore-dependencies openexr |
| 101 | + |
| 102 | + # - name: uninstall imath |
| 103 | + # run: brew uninstall --ignore-dependencies imath |
| 104 | + |
| 105 | + - name: install dependencies - openexr v2.5 |
| 106 | + run: | |
| 107 | + cd .. |
| 108 | + git clone https://github.com/AcademySoftwareFoundation/openexr.git && |
| 109 | + cd openexr && |
| 110 | + git checkout RB-2.5 && |
| 111 | + mkdir build && |
| 112 | + cd build && |
| 113 | + cmake -DBUILD_SHARED_LIBS=OFF .. && |
| 114 | + make && |
| 115 | + sudo make install |
| 116 | +
|
| 117 | + - uses: actions/checkout@v4 |
| 118 | + |
| 119 | + - name: Configure CMake |
| 120 | + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |
| 121 | + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |
| 122 | + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_SHARED_LIBS=OFF |
| 123 | + |
| 124 | + - name: Build |
| 125 | + # Build your program with the given configuration |
| 126 | + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
| 127 | + |
| 128 | + - name: Install |
| 129 | + run: sudo cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
| 130 | + |
| 131 | + - name: Test |
| 132 | + working-directory: ${{github.workspace}}/build |
| 133 | + # Execute tests defined by the CMake configuration. |
| 134 | + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail |
| 135 | + run: ctest -V --output-on-failure |
| 136 | + |
| 137 | + test-openexr3: |
| 138 | + runs-on: macos-latest |
| 139 | + |
| 140 | + steps: |
| 141 | + |
| 142 | + - name: install dependencies - imath |
| 143 | + run: | |
| 144 | + cd .. |
| 145 | + git clone https://github.com/AcademySoftwareFoundation/Imath.git && |
| 146 | + cd Imath && |
| 147 | + mkdir build && |
| 148 | + cd build && |
| 149 | + cmake -DBUILD_SHARED_LIBS=OFF .. && |
| 150 | + make && |
| 151 | + sudo make install |
| 152 | +
|
| 153 | + - name: install dependencies - openexr v3.1 |
| 154 | + run: | |
| 155 | + cd .. |
| 156 | + git clone https://github.com/AcademySoftwareFoundation/openexr.git && |
| 157 | + cd openexr && |
| 158 | + git checkout RB-3.1 && |
| 159 | + mkdir build && |
| 160 | + cd build && |
| 161 | + cmake -DBUILD_SHARED_LIBS=OFF .. && |
| 162 | + make && |
| 163 | + sudo make install |
| 164 | +
|
| 165 | + - uses: actions/checkout@v4 |
| 166 | + |
| 167 | + - name: Configure CMake |
| 168 | + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |
| 169 | + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |
| 170 | + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_SHARED_LIBS=OFF |
| 171 | + |
| 172 | + - name: Build |
| 173 | + # Build your program with the given configuration |
| 174 | + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
| 175 | + |
| 176 | + - name: Install |
| 177 | + run: sudo cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} |
| 178 | + |
| 179 | + - name: Test |
| 180 | + working-directory: ${{github.workspace}}/build |
| 181 | + # Execute tests defined by the CMake configuration. |
| 182 | + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail |
| 183 | + run: ctest -V --output-on-failure |
| 184 | + |
0 commit comments