Compare minimum camera raw compatibility versions #39
Workflow file for this run
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: CI | |
| on: | |
| push: # This triggers on any commit | |
| branches: | |
| - '**' # Runs on all branches | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| # These images are arm64 unless specified: https://github.com/actions/runner-images | |
| os: [macos-15] # macOS CI is expensive: [macos-14, macos-15, macos-15-intel, macos-26] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install Adobe DNG Converter | |
| run: | | |
| printf -- "-Downloading the DNG Converter .dmg file\n" | |
| curl -L -o DNGConverter_17_5.dmg https://download.adobe.com/pub/adobe/dng/mac/DNGConverter_17_5.dmg | |
| printf -- "\n\n-Mounting the DMG file\n" | |
| hdiutil attach DNGConverter_17_5.dmg | |
| # Rosetta2 is installed on arm64 Macs | |
| if [ -e /Library/Apple/usr/libexec/oah/libRosettaRuntime ]; then | |
| printf -- "\n\n-Running on Apple Silicon\n" | |
| else | |
| printf -- "\n\n-Running on Intel\n" | |
| fi | |
| printf -- "\n\n-Installing Adobe DNG Converter\n" | |
| sudo installer -pkg /Volumes/DNGConverter_17_5/DNGConverter_17_5.pkg -target `pwd` | |
| printf -- "\n\n-Unmounting the DMG file\n" | |
| hdiutil detach /Volumes/DNGConverter_17_5 | |
| - name: Test organizeGoProDNG.sh | |
| run: | | |
| chmod +x tests/test_organizeGoProDNG.sh | |
| ./tests/test_organizeGoProDNG.sh | |
| - name: Test compare_AdobeDNGConverter_arguments.sh | |
| run: | | |
| echo "TODO" |