Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/actions/setup-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,12 @@ runs:
opt_deps=(
cjson # for github.com/goplus/lib/c/cjson
sqlite # for github.com/goplus/lib/c/sqlite
python@3.12 # for github.com/goplus/lib/py
)
brew install "${opt_deps[@]}"

brew install python@3.12 || true # for github.com/goplus/lib/py
brew link --overwrite python@3.12

- name: Install Ubuntu dependencies
if: runner.os == 'Linux'
shell: bash
Expand Down Expand Up @@ -66,3 +69,4 @@ runs:
python3.12-dev # for github.com/goplus/lib/py
)
sudo apt-get install -y "${opt_deps[@]}"

2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
strategy:
matrix:
include:
- os: macos-13
- os: macos-15-intel
goos: darwin
goarch: amd64
go-version: "1.24.2"
Expand Down
Loading