Skip to content

Commit

Permalink
Update CI test build to compatible API version
Browse files Browse the repository at this point in the history
Update CI to use compatible c libraries.

Change default API version option to 730.
  • Loading branch information
masih committed Jul 18, 2023
1 parent b83c2fd commit e0aa68f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
go-version: "1.20.x"
- name: Install FoundationDB Client C bindings
env:
FDB_VERSION: '7.1.33'
FDB_CLIENTS_DEB_SHA256_SUM: 'd73002bc796de7ce0158f1eb64fab1f8e90bada2edd90599d9b40754220150af'
FDB_VERSION: '7.3.7'
FDB_CLIENTS_DEB_SHA256_SUM: '1b620971319c3ad149f2fb09b2fed639fb558120a296538133c4f2358836e983'
shell: bash
run: |
wget "https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-clients_${FDB_VERSION}-1_amd64.deb"
Expand Down
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type (
func newOptions(o ...Option) (*options, error) {
opts := options{
httpListenAddr: "0.0.0.0:40080",
fdbApiVersion: 710,
fdbApiVersion: 730,
statusRefreshInterval: time.NewTicker(10 * time.Second),
}
for _, apply := range o {
Expand Down

0 comments on commit e0aa68f

Please sign in to comment.