ui: Add lut logic. #138
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
name: macOS Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Build and analyze default scheme using xcodebuild command | |
runs-on: macos-15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install autoconf | |
run: brew install autoconf automake autoconf-archive | |
- name: Install pkg config | |
run: brew install pkg-config | |
- uses: lukka/get-cmake@latest | |
- name: run-vcpkg arm64 | |
uses: lukka/[email protected] | |
with: | |
# Specify the full SHA-1 hash of a Git commit (not a branch name, nor a tag!) that establishes which version of vcpkg needs to be used. When using vcpkg as a Git submodule, this input is *not* needed as implicitly specified by the submodule. | |
vcpkgGitCommitId: 'b322364f06308bdd24823f9d8f03fe0cc86fd46f' | |
# Run the installation of packages by running `vcpkg install` on the directory of the discovered 'vcpkg.json' file. Default is false. | |
runVcpkgInstall: true | |
# Enable the caching of the vcpkg executable and its data files (e.g. ports) by setting it to false. Default is true. Set this input to false when the vcpkg's executable is not delivered as a prebuilt file upon bootstrapping vcpkg. This does not disable vcpkg's binary cache which is always on and can be controlled by the user with the env var VCPKG_BINARY_SOURCES. | |
doNotCache: false | |
# Specify the glob expression used to discover the vcpkg.json whose content's hash is added to the cache key. On Windows runners using `github.workspace` context to form the expression would not work as expected since it contains backslashes. Use instead `**/path/to/vcpkg.json` to match the desired `vcpkg.json` file. | |
vcpkgJsonGlob: '**/vcpkg.json' | |
- name: vcpkg install macOS x64 | |
run: ./vcpkg/vcpkg install --classic boost-program-options:x64-osx boost-uuid:x64-osx boost-random:x64-osx brotli:x64-osx opencv:x64-osx magic-enum:x64-osx exiv2:x64-osx gtest:x64-osx dp-thread-pool:x64-osx libharu:x64-osx sqlite3:x64-osx nlohmann-json:x64-osx boost-bimap:x64-osx spdlog:x64-osx inja:x64-osx podofo:x64-osx harfbuzz:x64-osx icu:x64-osx | |
- name: vcpkg install macOS arm64 | |
run: ./vcpkg/vcpkg install --classic boost-program-options:arm64-osx boost-uuid:arm64-osx boost-random:arm64-osx brotli:arm64-osx opencv:arm64-osx magic-enum:arm64-osx exiv2:arm64-osx gtest:arm64-osx dp-thread-pool:arm64-osx libharu:arm64-osx sqlite3:arm64-osx nlohmann-json:arm64-osx boost-bimap:arm64-osx spdlog:arm64-osx inja:arm64-osx podofo:arm64-osx harfbuzz:arm64-osx icu:arm64-osx | |
- name: vcpkg integrate install | |
run: ./vcpkg/vcpkg integrate install | |
- name: Build Noir Library | |
run: ./build-pblib.sh | |
- name: Lipo libraries | |
run: python3 generate-lipo-commands.py |