Skip to content

Commit

Permalink
Merge branch 'main' into feat/cip36-metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Leshiy committed May 16, 2024
2 parents eedb91e + d00fa4a commit 10551bc
Show file tree
Hide file tree
Showing 100 changed files with 2,888 additions and 5,833 deletions.
12 changes: 11 additions & 1 deletion .config/dictionaries/project.dic
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ junitreport
Keyhash
keyserver
lcov
lerp
Leshiy
libapp
libavcodec
Expand Down Expand Up @@ -179,6 +180,7 @@ vkeywitness
voteplan
voteplans
wallclock
wasmtime
Werror
xcassets
xcconfig
Expand All @@ -188,4 +190,12 @@ xcodeproj
xctest
xctestrun
xcworkspace
yoroi
yoroi
multiplatform
Multiplatform
Easterling
lovelace
lovelaces
pinenacl
dtscalac
vkeys
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
# Icon must end with two \r
Icon


# Thumbnails
._*

Expand Down Expand Up @@ -103,4 +102,8 @@ dev-catalyst-voice-9f78f27c6bc5.json
/docs/site/

# Rust
Cargo.lock

# By default ignore Cargo.lock
# Specifically exclude it in the directory it appears, if its required.
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
17 changes: 10 additions & 7 deletions Earthfile
Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
# Set the Earthly version to 0.7
VERSION 0.8

IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.00.0 AS mdlint-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.00.0 AS cspell-ci
IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.00.0 AS postgresql-ci

VERSION 0.7
FROM debian:stable-slim

# cspell: words livedocs sitedocs

# check-markdown markdown check using catalyst-ci.
check-markdown:
DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.11.1+CHECK
DO mdlint-ci+CHECK

# markdown-check-fix markdown check and fix using catalyst-ci.
markdown-check-fix:
LOCALLY

DO github.com/input-output-hk/catalyst-ci/earthly/mdlint:v2.11.1+MDLINT_LOCALLY --src=$(echo ${PWD}) --fix=--fix
DO mdlint-ci+MDLINT_LOCALLY --src=$(echo ${PWD}) --fix=--fix

# check-spelling Check spelling in this repo inside a container.
check-spelling:
DO github.com/input-output-hk/catalyst-ci/earthly/cspell:v2.11.1+CHECK
DO cspell-ci+CHECK

# check if the sql files are properly formatted and pass lint quality checks.
check-sqlfluff:
FROM github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.11.1+postgres-base
FROM postgresql-ci+postgres-base

COPY . .

DO github.com/input-output-hk/catalyst-ci/earthly/postgresql:v2.11.1+CHECK
DO postgresql-ci+CHECK

repo-docs:
# Create artifacts of extra files we embed inside the documentation when its built.
Expand Down
6 changes: 1 addition & 5 deletions athena/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
*.pdb
6 changes: 5 additions & 1 deletion catalyst-gateway/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@ target/
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
*.pdb

# Build artifacts
cat-gateway.coverage-report.info
cat-gateway.junit-report.xml
Loading

0 comments on commit 10551bc

Please sign in to comment.