CircleCI Commit

circleci-project-setup
Tim Stack 2 months ago
parent c497dc49f1
commit 1f3d185f3a

@ -0,0 +1,29 @@
# This config was automatically generated from your source code
# Stacks detected: cicd:github-actions:.github/workflows,deps:python:docs,deps:ruby:docs,deps:rust:src/third-party/prqlc-c
version: 2.1
orbs:
macos: circleci/macos@2.2.0
jobs:
macos-apple-clang:
macos:
xcode: 12.5.1
steps:
- checkout
- run: brew install pcre2 sqlite ncurses xz zstd readline libarchive curl autoconf automake
- run: ./autogen.sh
- run: >-
./configure --enable-static \
--with-libcurl=/usr \
--with-pcre2=$(brew --prefix pcre2) \
--with-sqlite3=$(brew --prefix sqlite3) \
"CXXFLAGS=-I$(brew --prefix ncurses)/include -g2 -O2" \
'CFLAGS=-O2 -g2' \
"LDFLAGS=-L$(brew --prefix ncurses)/lib -L$(brew --prefix xz)/lib -L$(brew --prefix zstd)/lib/" \
--with-readline=$(brew --prefix readline) \
--with-libarchive=$(brew --prefix libarchive) \
"LIBS=-llzma -lzstd -liconv -llz4"
- run: make -j2
workflows:
build-and-test:
jobs:
- macos-apple-clang
Loading…
Cancel
Save