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
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
targets: wasm32-unknown-unknown

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown
Expand Down Expand Up @@ -64,8 +65,17 @@ jobs:
if: runner.os == 'Windows'
run: |
choco install z3 -y
echo "Z3_SYS_Z3_HEADER=C:\ProgramData\chocolatey\lib\z3\tools\include\z3.h" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "LIB=C:\ProgramData\chocolatey\lib\z3\tools\lib;$env:LIB" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
$z3_h = (Get-ChildItem -Path C:\ProgramData\chocolatey\lib\z3 -Filter z3.h -Recurse | Select-Object -First 1).FullName
if ($z3_h) {
$z3_root = Split-Path (Split-Path $z3_h)
echo "Z3_SYS_Z3_HEADER=$z3_h" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "LIB=$z3_root\lib;$env:LIB" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Write-Host "Found Z3 header at: $z3_h"
Write-Host "Found Z3 lib dir at: $z3_root\lib"
} else {
Write-Error "Could not find z3.h in Chocolatey package directory"
exit 1
}

- name: Install system dependencies (Linux only)
if: runner.os == 'Linux'
Expand Down
105 changes: 75 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
[]
],
"ledger": {
"protocol_version": 21,
"protocol_version": 20,
"sequence_number": 0,
"timestamp": 0,
"network_id": "0000000000000000000000000000000000000000000000000000000000000000",
Expand Down Expand Up @@ -147,18 +147,6 @@
"lo": 6000
}
}
},
{
"key": {
"vec": [
{
"symbol": "Version"
}
]
},
"val": {
"u32": 1
}
}
]
}
Expand Down Expand Up @@ -200,7 +188,7 @@
},
"ext": "v0"
},
6311999
15
]
],
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
]
],
"ledger": {
"protocol_version": 21,
"protocol_version": 20,
"sequence_number": 0,
"timestamp": 0,
"network_id": "0000000000000000000000000000000000000000000000000000000000000000",
Expand Down Expand Up @@ -186,18 +186,6 @@
"lo": 9000
}
}
},
{
"key": {
"vec": [
{
"symbol": "Version"
}
]
},
"val": {
"u32": 1
}
}
]
}
Expand Down Expand Up @@ -239,7 +227,7 @@
},
"ext": "v0"
},
6311999
15
]
],
[
Expand Down Expand Up @@ -272,7 +260,7 @@
},
"ext": "v0"
},
6311999
15
]
],
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
]
],
"ledger": {
"protocol_version": 21,
"protocol_version": 20,
"sequence_number": 0,
"timestamp": 0,
"network_id": "0000000000000000000000000000000000000000000000000000000000000000",
Expand Down Expand Up @@ -117,7 +117,7 @@
},
"ext": "v0"
},
6311999
15
]
],
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
]
],
"ledger": {
"protocol_version": 21,
"protocol_version": 20,
"sequence_number": 0,
"timestamp": 0,
"network_id": "0000000000000000000000000000000000000000000000000000000000000000",
Expand Down Expand Up @@ -117,7 +117,7 @@
},
"ext": "v0"
},
6311999
15
]
],
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
[]
],
"ledger": {
"protocol_version": 21,
"protocol_version": 20,
"sequence_number": 0,
"timestamp": 0,
"network_id": "0000000000000000000000000000000000000000000000000000000000000000",
Expand Down Expand Up @@ -147,18 +147,6 @@
"lo": 6000
}
}
},
{
"key": {
"vec": [
{
"symbol": "Version"
}
]
},
"val": {
"u32": 1
}
}
]
}
Expand Down Expand Up @@ -200,7 +188,7 @@
},
"ext": "v0"
},
6311999
15
]
],
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
[]
],
"ledger": {
"protocol_version": 21,
"protocol_version": 20,
"sequence_number": 0,
"timestamp": 0,
"network_id": "0000000000000000000000000000000000000000000000000000000000000000",
Expand Down Expand Up @@ -148,18 +148,6 @@
"lo": 4950
}
}
},
{
"key": {
"vec": [
{
"symbol": "Version"
}
]
},
"val": {
"u32": 1
}
}
]
}
Expand Down Expand Up @@ -201,7 +189,7 @@
},
"ext": "v0"
},
6311999
15
]
],
[
Expand Down
Loading
Loading