Skip to content

Commit def75ed

Browse files
committed
so we beat on, boats against the current, borne back ceaselessly into the past
0 parents  commit def75ed

21 files changed

+13552
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# exclude changes from `git diff`
2+
Cargo.lock binary

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* @init4tech/engineering
2+
.github/workflows @rswanson

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "cargo"
4+
# Look for `Cargo.toml` and `Cargo.lock` in the root directory
5+
directory: "/"
6+
# Check for updates every Monday
7+
schedule:
8+
interval: "weekly"
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
# Check for updates every Monday
12+
schedule:
13+
interval: "weekly"
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Docker ECR Push - Pecorino
2+
3+
on:
4+
push:
5+
branches: [main]
6+
tags:
7+
- v**
8+
workflow_dispatch:
9+
10+
permissions:
11+
packages: write
12+
contents: read
13+
id-token: write
14+
15+
# simplest example of using the rust-base action
16+
jobs:
17+
docker-ecr-push:
18+
uses: init4tech/actions/.github/workflows/ecr-build-and-push.yml@main
19+
with:
20+
rust-binary-name: pecorino-signet
21+
environment: dev
22+
dockerfile-path: Dockerfile.pecorino
23+
secrets:
24+
aws-ecr-repository: ${{ secrets.AWS_ECR_REPOSITORY }}
25+
aws-ecr-deployer-role-arn: ${{ secrets.AWS_ECR_DEPLOYER_ROLE_ARN }}

.github/workflows/docker-ecr.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Docker ECR Push
2+
3+
on:
4+
push:
5+
branches: [main]
6+
tags:
7+
- v**
8+
workflow_dispatch:
9+
10+
permissions:
11+
packages: write
12+
contents: read
13+
id-token: write
14+
15+
# simplest example of using the rust-base action
16+
jobs:
17+
docker-ecr-push:
18+
uses: init4tech/actions/.github/workflows/ecr-build-and-push.yml@main
19+
with:
20+
rust-binary-name: signet
21+
environment: dev
22+
secrets:
23+
aws-ecr-repository: ${{ secrets.AWS_ECR_REPOSITORY }}
24+
aws-ecr-deployer-role-arn: ${{ secrets.AWS_ECR_DEPLOYER_ROLE_ARN }}

.github/workflows/docker-ghcr.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release GHCR
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch:
7+
8+
# simplest example of using the rust-base action
9+
jobs:
10+
ghcr-release:
11+
uses: init4tech/actions/.github/workflows/ghcr.yml@main
12+
permissions:
13+
contents: read
14+
packages: write
15+
attestations: write
16+
id-token: write

.github/workflows/rust.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI # Continuous Integration
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
workflow_dispatch:
8+
9+
# simplest example of using the rust-base action
10+
jobs:
11+
rust-base:
12+
uses: init4tech/actions/.github/workflows/rust-base.yml@main
13+
with:
14+
require-lockfile: true
15+
rust-profile: 'ci-rust'

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/db
2+
/holesky
3+
/static
4+
/target
5+
recipe.json
6+
jwttoken
7+
.github/scripts/genesis/out
8+
.github/scripts/genesis/cache
9+
.DS_Store

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule ".github/scripts/genesis/lib/zenith"]
2+
path = .github/scripts/genesis/lib/zenith
3+
url = https://github.com/init4tech/zenith

0 commit comments

Comments
 (0)