Bumped FLTK version v1.5.4. #2184
This file contains hidden or 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: OpenGL MacOS M1 | |
| on: | |
| push: | |
| branches-ignore: | |
| - vulkan | |
| tags-ignore: | |
| - '**' | |
| jobs: | |
| ################################### | |
| # # | |
| # FULL BUILDS # | |
| # # | |
| ################################### | |
| macos-14-full-build: | |
| runs-on: macos-14 | |
| permissions: | |
| contents: write # Needed to update releases | |
| env: | |
| CMAKE_OSX_DEPLOYMENT_TARGET: 14.0 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Get machine name | |
| run: | | |
| echo "Machine name: $RUNNER_NAME" | |
| - name: Install ninja-build | |
| run: brew install ninja | |
| - name: Install gettext | |
| run: brew install gettext | |
| - name: Install automake and other network utils | |
| run: brew install automake curl rsync wget | |
| - name: Install GNU sed | |
| run: brew install gnu-sed | |
| - name: Install Python dependencies | |
| run: brew install libb2 libffi readline sqlite3 xz zlib | |
| - name: Install pyFLTK dependencies | |
| run: brew install swig | |
| - name: Setup environment | |
| run: mkdir -p ssh | |
| - name: Decode SSH key | |
| run: echo "${{ secrets.SSH_PRIVATE_KEY }}" | base64 -d > ssh/id_rsa | |
| shell: bash | |
| - name: Set permissions on SSH key | |
| run: chmod 600 ssh/id_rsa | |
| - name: Decode FLTK SSH key | |
| run: | | |
| mkdir -p ~/.ssh | |
| echo "${{ secrets.FLTK_DEPLOY_KEY }}" > ~/.ssh/id_ed25519 | |
| chmod 600 ~/.ssh/id_ed25519 | |
| ssh-keyscan github.com >> ~/.ssh/known_hosts | |
| - name: Add SourceForge to known_hosts | |
| run: ssh-keyscan frs.sourceforge.net >> ~/.ssh/known_hosts | |
| - name: Set executable permissions | |
| run: | | |
| chmod +x ./*.sh ./bin/*.sh ./etc/*.sh ./bin/release/*.sh | |
| - name: Checkout FLTK git tag type | |
| run: git ls-remote --tags https://github.com/ggarra13/fltk.git | grep v1.2.2 | |
| - name: List disk space | |
| run: | | |
| df -k | |
| - name: Build mrv2 | |
| env: | |
| BUILD_PYTHON: ON | |
| MRV2_PYFLTK: ON | |
| MRV2_PYBIND11: ON | |
| MRV2_NETWORK: ON | |
| MRV2_PDF: ON | |
| MRV2_VK: ON | |
| TLRENDER_AV1: ON | |
| TLRENDER_EXR: ON | |
| TLRENDER_FFMPEG: ON | |
| TLRENDER_FFMPEG_MINIMAL: ON | |
| TLRENDER_HAP: ON | |
| TLRENDER_JPEG: ON | |
| TLRENDER_NDI: OFF | |
| TLRENDER_NET: ON | |
| TLRENDER_OPENJPH: ON | |
| TLRENDER_RAW: ON | |
| TLRENDER_SGI: ON | |
| TLRENDER_STB: ON | |
| TLRENDER_SVTAV1: ON | |
| TLRENDER_TIFF: ON | |
| TLRENDER_USD: ON | |
| TLRENDER_VK: OFF | |
| TLRENDER_VPX: ON | |
| TLRENDER_YASM: ON | |
| run: | | |
| ./etc/runme_nolog.sh -t package clean | |
| - name: Upload binaries | |
| run: | | |
| ./bin/release/upload_sourceforge.sh | |
| # - name: Upload Beta Release | |
| # uses: softprops/action-gh-release@v2 | |
| # with: | |
| # tag_name: betas | |
| # name: Betas Builds | |
| # body: | | |
| # Latest beta build - auto-updated. | |
| # Built on: ${{ github.event.head_commit.message }} | |
| # prerelease: true | |
| # files: | | |
| # packages/BUILD-Darwin-arm64/Release/mrv2-beta-Darwin-arm64.dmg | |
| # overwrite_files: true # THIS IS KEY | |
| # token: ${{ secrets.GITHUB_TOKEN }} |