libgis: G_vasprintf bug fix #6327
Workflow file for this run
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 | |
env: | |
PYTHONWARNINGS: always | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Get current date cache key segment | |
id: date | |
# Year and week of year so cache key changes weekly | |
run: echo "date=$(date +%Y-%U)" >> "${GITHUB_OUTPUT}" | |
- name: Setup Mamba | |
uses: mamba-org/setup-micromamba@617811f69075e3fd3ae68ca64220ad065877f246 # v2.0.0 | |
with: | |
init-shell: bash | |
environment-file: .github/workflows/macos_dependencies.txt | |
environment-name: grass-env | |
# Persist on the same period (date). | |
cache-environment-key: environment-${{ steps.date.outputs.date }} | |
- name: Environment info | |
shell: bash -el {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: ${{ !cancelled() }} | |
shell: micromamba-shell {0} | |
run: source ./.github/workflows/print_versions.sh | |
- name: Run pytest with multiple workers in parallel | |
shell: micromamba-shell {0} | |
run: | | |
export PYTHONPATH=$(grass --config python_path):$PYTHONPATH | |
export LD_LIBRARY_PATH=$(grass --config path)/lib:$LD_LIBRARY_PATH | |
pytest --verbose --color=yes --durations=0 --durations-min=0.5 \ | |
--numprocesses auto \ | |
-ra . \ | |
-m 'not needs_solo_run' | |
- name: Run pytest with a single worker (for tests marked with needs_solo_run) | |
shell: micromamba-shell {0} | |
run: | | |
export PYTHONPATH=$(grass --config python_path):$PYTHONPATH | |
export LD_LIBRARY_PATH=$(grass --config path)/lib:$LD_LIBRARY_PATH | |
pytest --verbose --color=yes --durations=0 --durations-min=0.5 \ | |
-ra . \ | |
-m 'needs_solo_run' | |
- name: Run gunittest 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: ${{ !cancelled() }} | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: testreport-macOS | |
path: testreport | |
retention-days: 3 |