Skip to content

Commit 08e4669

Browse files
committed
Github action: Disable macOS build because it is broken again
The macOS build breaks all the time for unknown reasons that have nothing to do with the code but with the build environment.
1 parent fbb2d72 commit 08e4669

File tree

1 file changed

+0
-44
lines changed

1 file changed

+0
-44
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -3,50 +3,6 @@ name: CI
33
on: [ push, pull_request ]
44

55
jobs:
6-
macos:
7-
strategy:
8-
fail-fast: false
9-
matrix:
10-
os:
11-
- "macos-13"
12-
- "macos-14" # latest
13-
runs-on: ${{ matrix.os }}
14-
15-
env:
16-
LUA_VERSION: 5.4
17-
18-
steps:
19-
- uses: actions/checkout@v4
20-
21-
- name: Install prerequisites
22-
run: |
23-
# Workaround for github/brew problem. Python is already install
24-
# on the Github action runner and then homebrew comes along...
25-
# See also: https://github.com/Homebrew/homebrew-core/issues/173191
26-
rm -f /usr/local/bin/2to3* /usr/local/bin/idle3* /usr/local/bin/pydoc3* /usr/local/bin/python3*
27-
brew install boost lua nlohmann-json opencv pandoc postgis potrace python3
28-
# --break-system-packages is needed on macOS 14
29-
pip3 install --break-system-packages psycopg2 behave osmium
30-
mkdir ~/postgres
31-
pg_ctl -D ~/postgres init
32-
pg_ctl -D ~/postgres start
33-
shell: bash
34-
35-
- name: Setup database
36-
run: |
37-
psql -d postgres -c 'CREATE EXTENSION postgis'
38-
psql -d postgres -c 'CREATE EXTENSION hstore'
39-
psql -d postgres -c 'SELECT PostGIS_Full_Version()'
40-
mkdir -m 700 $GITHUB_WORKSPACE/tablespacetest
41-
psql -d postgres -c "CREATE TABLESPACE tablespacetest LOCATION '$GITHUB_WORKSPACE/tablespacetest'"
42-
shell: bash
43-
44-
- uses: ./.github/actions/linux-cmake
45-
- uses: ./.github/actions/build-and-test
46-
with:
47-
test-wrapper: ''
48-
env:
49-
PGHOST: /tmp
506

517
ubuntu20-pg96-gcc10-jit:
528
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)