Skip to content

Commit

Permalink
modify workflow.yml for ipa test
Browse files Browse the repository at this point in the history
  • Loading branch information
guozhengxuan committed Sep 3, 2024
1 parent d015f34 commit dacbdf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: compile
run: cmake --build build -j2
- name: run test
run: cd build/bandersnatch && ctest
run: cd build/ipa && ctest
build_with_gcc:
name: build_with_gcc
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: compile
run: cmake --build build -j2
- name: run test
run: cd build/bandersnatch && ctest
run: cd build/ipa && ctest
ubuntu22_04_build_with_gcc:
name: ubuntu22_04_build_with_gcc
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -105,4 +105,4 @@ jobs:
- name: compile
run: cmake --build build -j2
- name: run test
run: cd build/bandersnatch && ctest
run: cd build/ipa && ctest
7 changes: 0 additions & 7 deletions common/common/Common.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,8 @@
//
#pragma once
#include <cstddef>
#include <cstdint>
#include <memory>

namespace verkle::common
{
constexpr size_t vectorLength = 256;

using byte = uint8_t;
using bytes = std::vector<byte>;
using bytesPtr = std::shared_ptr<std::vector<byte>>;

}

0 comments on commit dacbdf5

Please sign in to comment.