Skip to content

Commit 6a027ea

Browse files
authored
Merge pull request #96 from michalc/ci/test-more-recent-mac-os
ci: test on more recent macOS (since older is no longer available)
2 parents 658f606 + 7026604 commit 6a027ea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# If changing how many times tests are run, must also change in codecov.yml
5858
# to ensure test coverage is reported only after all tests have finished
5959
os:
60-
- "macos-11"
60+
- "macos-12"
6161
- "ubuntu-20.04"
6262
- "windows-2019"
6363
sqlite-version:
@@ -107,7 +107,7 @@ jobs:
107107
gcc -shared sqlite3.c -o sqlite3.dll
108108
echo "LIBSQLITE3_PATH=${PWD}/sqlite3.dll" >> $env:GITHUB_ENV
109109
- name: "Compile SQLite from amalgamation (Ubuntu or macOS)"
110-
if: (matrix.os == 'ubuntu-20.04' || matrix.os == 'macos-11') && matrix.sqlite-version != 'default'
110+
if: (matrix.os == 'ubuntu-20.04' || matrix.os == 'macos-12') && matrix.sqlite-version != 'default'
111111
run: |
112112
gcc -shared -fPIC -o libsqlite3.so.0 sqlite3.c
113113
echo "LIBSQLITE3_PATH=${PWD}/libsqlite3.so.0" >> "$GITHUB_ENV"
@@ -133,11 +133,11 @@ jobs:
133133
until nc -w 10 127.0.0.1 9000; do sleep 1; done
134134
coverage run -m unittest
135135
- name: "Test (macOS)"
136-
if: matrix.os == 'macos-11'
136+
if: matrix.os == 'macos-12'
137137
run: |
138138
mkdir -p ./data
139139
chmod +x ./minio/minio-darwin
140140
./minio/minio-darwin server ./data &
141141
until nc -w 10 127.0.0.1 9000; do sleep 1; done
142142
coverage run -m unittest
143-
- uses: codecov/codecov-action@v3
143+
- uses: codecov/codecov-action@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ All other exceptions raised inherit from `sqlite_s3_query.SQLiteS3QueryError` as
265265

266266
## Compatibility
267267

268-
- Linux (tested on Ubuntu 20.04), Windows (tested on Windows Server 2019), or macOS (tested on macOS 11)
268+
- Linux (tested on Ubuntu 20.04), Windows (tested on Windows Server 2019), or macOS (tested on macOS 12)
269269
- SQLite >= 3.7.15, (tested on 3.7.15, 3.36.0, 3.42.0, and the default version available on each OS tested)
270270
- Python >= 3.6.7 (tested on 3.6.7, 3.7.1, 3.8.0, 3.9.0, 3.10.0, and 3.11.0)
271271
- HTTPX >= 0.18.2 (tested on 0.18.2 with Python >= 3.6.7, and 0.24.1 with Python >= 3.7.1)

0 commit comments

Comments
 (0)