Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ version: 2
jobs:
build:
macos:
xcode: "11.4.0"
xcode: "14.2.0"

steps:
- checkout

- run:
name: Install Solidity
command: |
brew unlink python@2
brew update
brew upgrade
#brew tap ethereum/ethereum # Acutally we should use the rule from the pull request
brew install ./solidity.rb
no_output_timeout: 30m

- run:
name: Test Formula
Expand All @@ -34,6 +34,7 @@ jobs:
brew update
#brew tap ethereum/ethereum # Acutally we should use the rule from the pull request
brew install ./[email protected]
no_output_timeout: 30m

- run:
name: Test Formula
Expand All @@ -53,6 +54,7 @@ jobs:
brew update
#brew tap ethereum/ethereum # Acutally we should use the rule from the pull request
brew install ./[email protected]
no_output_timeout: 30m

- run:
name: Test Formula
Expand All @@ -72,6 +74,7 @@ jobs:
brew update
#brew tap ethereum/ethereum # Acutally we should use the rule from the pull request
brew install ./[email protected]
no_output_timeout: 30m

- run:
name: Test Formula
Expand All @@ -91,6 +94,7 @@ jobs:
brew update
#brew tap ethereum/ethereum # Acutally we should use the rule from the pull request
brew install ./[email protected]
no_output_timeout: 30m

- run:
name: Test Formula
Expand Down
2 changes: 1 addition & 1 deletion solidity.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Solidity < Formula
depends_on "z3"

def install
system "cmake", ".", *std_cmake_args, "-DTESTS=OFF"
system "cmake", ".", *std_cmake_args, "-DTESTS=OFF", "-DSTRICT_Z3_VERSION=OFF"
system "make", "install"
end

Expand Down