Create LICENSE #36
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: Swift | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install HDF5 | |
run: brew install hdf5 | |
- name: Select Xcode 16.2 | |
run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
- name: Resolve Swift Packages | |
run: xcodebuild -resolvePackageDependencies -project HDF5QL.xcodeproj | |
- name: Build using xcodebuild | |
run: | | |
xcodebuild -project HDF5QL.xcodeproj \ | |
-scheme HDF5QL \ | |
-configuration Release \ | |
clean build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO |