i.atcorr: update man page to fix numbering of AVIRIS bands and make s… #406
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 and run tests on macOS | |
on: | |
push: | |
branches: | |
- main | |
- releasebranch_* | |
pull_request: | |
env: | |
CACHE_NUMBER: 0 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
macos_build: | |
name: macOS build | |
runs-on: macos-14 | |
steps: | |
- name: Info | |
run: | | |
echo "macOS version $(sw_vers -productVersion)" | |
echo "architecture $(uname -a)" | |
- name: Disabling Spotlight | |
run: sudo mdutil -a -i off | |
- name: Uninstalling Homebrew | |
run: | | |
echo "Moving directories..." | |
sudo mkdir /opt/local-off /opt/homebrew-off | |
test ! -d /usr/local || /usr/bin/sudo /usr/bin/find /usr/local \ | |
-mindepth 1 -maxdepth 1 -type d -print -exec /bin/mv {} \ | |
/opt/local-off/ \; | |
test ! -d /opt/homebrew || /usr/bin/sudo /usr/bin/find /opt/homebrew \ | |
-mindepth 1 -maxdepth 1 -type d -print -exec /bin/mv {} \ | |
/opt/homebrew-off/ \; | |
echo "Removing files..." | |
test ! -d /usr/local || /usr/bin/sudo /usr/bin/find /usr/local \ | |
-mindepth 1 -maxdepth 1 -type f -print -delete | |
test ! -d /opt/homebrew || /usr/bin/sudo /usr/bin/find /opt/homebrew \ | |
-mindepth 1 -maxdepth 1 -type f -print -delete | |
# Rehash to forget about the deleted files | |
hash -r | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Mamba | |
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 # v1.9.0 | |
with: | |
init-shell: bash | |
environment-file: .github/workflows/macos_dependencies.txt | |
environment-name: grass-env | |
- name: Environment info | |
shell: micromamba-shell {0} | |
run: | | |
printenv | sort | |
$CC --version | |
- name: Create installation directory | |
run: mkdir $HOME/install | |
- name: Build and install | |
shell: micromamba-shell {0} | |
run: source ./.github/workflows/macos_install.sh $HOME/install | |
- name: Add the bin directory to PATH | |
run: echo "$HOME/install/bin" >> $GITHUB_PATH | |
- name: Check installed version | |
if: always() | |
shell: micromamba-shell {0} | |
run: source ./.github/workflows/print_versions.sh | |
- name: Run tests | |
shell: micromamba-shell {0} | |
run: > | |
grass --tmp-project XY --exec \ | |
g.download.project url=${{ env.SampleData }} path=$HOME | |
grass --tmp-project XY --exec \ | |
python3 -m grass.gunittest.main \ | |
--grassdata $HOME --location nc_spm_full_v2alpha2 --location-type nc \ | |
--min-success 100 --config .github/workflows/macos_gunittest.cfg | |
env: | |
SampleData: "https://grass.osgeo.org/sampledata/north_carolina/\ | |
nc_spm_full_v2alpha2.tar.gz" | |
- name: Make HTML test report available | |
if: ${{ always() }} | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: testreport-macOS | |
path: testreport | |
retention-days: 3 |