Skip to content

Commit de6abef

Browse files
Agave v3.1 harness adjustments (#389)
* Pull in latest agave-v3.0.3 commits into agave-v3.1.0-beta.0 (#396) * bump protosol crate version in gen cargo script (#390) * README: Include note on local Agave setup (#391) * elf: move to flatbuffers (#392) * elf: fix conversion script (#394) --------- Co-authored-by: ravyu-jump <[email protected]> Co-authored-by: mjain-jump <[email protected]> README: Include note on local Agave setup (#391) * # This is a combination of 4 commits. # This is the 1st commit message: Pull in latest agave-v3.0.3 commits into agave-v3.1.0-beta.0 (#396) * bump protosol crate version in gen cargo script (#390) * README: Include note on local Agave setup (#391) * elf: move to flatbuffers (#392) * elf: fix conversion script (#394) --------- Co-authored-by: ravyu-jump <[email protected]> Co-authored-by: mjain-jump <[email protected]> # This is the commit message #2: README: Include note on local Agave setup (#391) # This is the commit message #3: elf: move to flatbuffers (#392) # This is the commit message #4: elf: fix conversion script (#394) * Pull in latest agave-v3.0.3 commits into agave-v3.1.0-beta.0 (#396) * bump protosol crate version in gen cargo script (#390) * README: Include note on local Agave setup (#391) * elf: move to flatbuffers (#392) * elf: fix conversion script (#394) --------- Co-authored-by: ravyu-jump <[email protected]> Co-authored-by: mjain-jump <[email protected]> README: Include note on local Agave setup (#391) elf: move to flatbuffers (#392) elf: fix conversion script (#394) Agave v3.1 bump PR comments round one Add extra variable hint PR feedback adjust cargo toml to pull in dev feature add back tracing syscalls: fix mapping with custom memory module (#393) Agave v3.1 bump PR comments round one Add extra variable hint PR feedback adjust cargo toml to pull in dev feature add back tracing syscalls: fix mapping with custom memory module (#393) bump protosol crate version in gen cargo script (#390) README: Include note on local Agave setup (#391) Pull in latest agave-v3.0.3 commits into agave-v3.1.0-beta.0 (#396) * bump protosol crate version in gen cargo script (#390) * README: Include note on local Agave setup (#391) * elf: move to flatbuffers (#392) * elf: fix conversion script (#394) --------- Co-authored-by: ravyu-jump <[email protected]> Co-authored-by: mjain-jump <[email protected]> README: Include note on local Agave setup (#391) elf: move to flatbuffers (#392) elf: fix conversion script (#394) Agave v3.1 bump PR comments round one Add extra variable hint PR feedback adjust cargo toml to pull in dev feature add back tracing syscalls: fix mapping with custom memory module (#393) Agave v3.1 bump PR comments round one Add extra variable hint PR feedback adjust cargo toml to pull in dev feature add back tracing syscalls: fix mapping with custom memory module (#393) bump protosol crate version in gen cargo script (#390) README: Include note on local Agave setup (#391) * Update SHA * Update CI * ci: make persistent test vectors --------- Co-authored-by: Manik Jain <[email protected]>
1 parent a38cb76 commit de6abef

18 files changed

+2099
-1560
lines changed

.github/workflows/build-common.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ jobs:
3636
sudo dnf install -y systemd-devel
3737
./deps.sh
3838
39+
- name: check out test-vectors (persistent)
40+
run: |
41+
COMMIT_SHA=$(cat scripts/test-vectors-commit-sha.txt)
42+
TEST_VECTORS_PATH="/data/svc_firedancer/test-vectors/${COMMIT_SHA}"
43+
if [[ ! -d "${TEST_VECTORS_PATH}" ]]; then
44+
mkdir -p /data/svc_firedancer/test-vectors
45+
git clone https://github.com/firedancer-io/test-vectors.git "${TEST_VECTORS_PATH}"
46+
git -C "${TEST_VECTORS_PATH}" checkout "${COMMIT_SHA}"
47+
fi
48+
mkdir -p dump
49+
ln -sf "${TEST_VECTORS_PATH}" dump/test-vectors
50+
3951
- name: Check lints and clippy
4052
run: |
4153
cargo fmt --all -- --check

.github/workflows/build-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Build, check, test, release"
22
on:
33
push:
44
branches:
5-
- 'agave-v3.0.3'
5+
- 'agave-v3.1.0-beta.0'
66

77
jobs:
88
build:

.github/workflows/on_agave_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
types:
77
- completed
88
branches:
9-
- agave-v3.0.3
9+
- agave-v3.1.0-beta.0
1010
jobs:
1111
kick_solfuzz_ci:
1212
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)