Skip to content
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/_deploy-owen-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ jobs:
source $HOME/.cargo/env

- name: "Install dependencies with dnf"
run: dnf install -y gcc gcc-c++ glibc-devel make python3-pip openssl openssl-devel tar gzip git nodejs nasm
run: dnf install -y gcc gcc-c++ glibc-devel make python3-pip openssl openssl-devel tar gzip git nasm

- name: Install Node.js 20
run: |
curl -fsSL https://rpm.nodesource.com/setup_20.x | bash -
dnf install -y nodejs

- name: "Install cargo-lambda"
run: pip3 install cargo-lambda
Expand Down
3 changes: 1 addition & 2 deletions owen/src/blobs_queue.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
use crate::{blob::BlobTransactionData, constants::BLOBS_QUEUE_MESSAGE_GROUP_ID};
use alloy::primitives::{Bytes, FixedBytes};
use aws_config::{meta::region::RegionProviderChain, BehaviorVersion};
use aws_sdk_s3::primitives::ByteStream;
use log_macros::log_info;

use crate::{blob::BlobTransactionData, constants::BLOBS_QUEUE_MESSAGE_GROUP_ID};
use serde::{Deserialize, Serialize};
use sha2::{Digest, Sha256};
use std::env;
Expand Down
Loading