Skip to content

Commit

Permalink
Downgrade macos version on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed Apr 29, 2024
1 parent c093db6 commit 6a6c333
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/general.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ jobs:

test-macos:
if: github.event_name != 'schedule' || github.repository_owner == 'frictionlessdata'
runs-on: macos-latest
# TODO: migrate to macos-latest after figuring out how to
# make `posgres/pg_config` works in the environment. Currently, it fails
# with the following error: "pg_config" not found"
runs-on: macos-13
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -84,7 +87,8 @@ jobs:
- name: Prepare variables
run: cp .env.example .env
- name: Test software
run: hatch run +py=3.10 ci:test
# https://stackoverflow.com/questions/9678408/cant-install-psycopg2-with-pip-in-virtualenv-on-mac-os-x-10-7
run: LDFLAGS=`echo $(pg_config --ldflags)` hatch run +py=3.10 ci:test

# Test (Windows)

Expand Down

0 comments on commit 6a6c333

Please sign in to comment.