Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e93b46e
Update sawtooth-meta Dockerfile to use 1.0 apt repo
rbuysse Jul 9, 2018
06ec817
Add fallback keyservers to sawtooth-meta
rbuysse Jul 9, 2018
f710909
Archive meta package during builds
rbuysse Jul 9, 2018
2f53ec7
Add log guard for devmode debug msgs
peterschwarz Aug 9, 2018
91bfe8f
Add BlockStatusStore trait
Aug 20, 2018
1e14500
Add BlockScheduler in Rust
Aug 20, 2018
73cf590
Add BlockScheduler unit tests
Aug 20, 2018
964d4c5
Change map to `if let Some` to be clearer
Aug 15, 2018
06ec9e1
Remove redundant field name when variable is named the same
Aug 15, 2018
be0a3ad
Mark functions as unsafe instead of code blocks in publisher_ffi
Aug 17, 2018
7df34f0
Mark functions unsafe not code blocks, in batch queue ffi
Aug 17, 2018
0dac965
Mark functions unsafe, not code blocks, in chain_ffi
Aug 17, 2018
4302221
Mark functions unsafe, not code blocks, in lmdb_ffi
Aug 17, 2018
9d3db3d
call mem::forget on variable passed from Rust to Python
Aug 17, 2018
eaa0483
Include kubernetes yaml files
rberg2 Aug 22, 2018
b023a15
Include kubernetes yaml in docs artifacts
rberg2 Aug 22, 2018
c152cef
Implemented Structure For Rest Api Testing
asing177 Aug 22, 2018
c035f41
Added test cases for Multiple Txns in Batch
sandeeplandt Aug 29, 2018
c999e47
Added test cases for multiple txns in a batch
sandeeplandt Aug 30, 2018
f68a92d
Added tests for multiple txns and created common code for txns
sandeeplandt Sep 1, 2018
20ceb7b
Common code for transactions and added 4 tests
sandeeplandt Sep 3, 2018
0fe3710
Create dummy
sandeeplandt Sep 12, 2018
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
5 changes: 3 additions & 2 deletions ci/sawtooth-meta
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ FROM ubuntu:xenial

COPY --from=sawtooth-meta-builder /project/ci/sawtooth*.deb /tmp

RUN echo "deb http://repo.sawtooth.me/ubuntu/ci xenial universe" >> /etc/apt/sources.list \
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8AA7AF1F1091A5FD \
RUN echo "deb http://repo.sawtooth.me/ubuntu/1.0/stable xenial universe" >> /etc/apt/sources.list \
&& (apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8AA7AF1F1091A5FD \
|| apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 8AA7AF1F1091A5FD) \
&& apt-get update \
&& dpkg -i /tmp/sawtooth*.deb || true \
&& apt-get -f -y install \
Expand Down
7 changes: 7 additions & 0 deletions docker-compose-installed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,3 +292,10 @@ services:
- no_proxy
image: sawtooth-devmode-rust:${ISOLATION_ID}
container_name: sawtooth-devmode-rust

sawtooth-meta:
build:
context: .
dockerfile: ci/sawtooth-meta
image: sawtooth-meta:${ISOLATION_ID}
container_name: sawtooth-meta
9 changes: 9 additions & 0 deletions docker/compose/copy-debs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,3 +213,12 @@ services:
bash -c "
cp /tmp/*.deb /build/debs
"

sawtooth-meta:
image: sawtooth-meta:${ISOLATION_ID}
volumes:
- ../../build/debs:/build/debs
command: |
bash -c "
cp /tmp/*.deb /build/debs
"
Loading