Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fgandila committed Sep 23, 2024
0 parents commit 581d6c2
Show file tree
Hide file tree
Showing 694 changed files with 98,067 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
branches: [ main, feat/*, rc/* ]
pull_request:
branches: [ main, feat/*, rc/* ]
workflow_dispatch:

permissions:
actions: write
checks: write
contents: write
id-token: write
issues: write
discussions: write
pull-requests: write
statuses: write

jobs:
contracts:
name: Contracts
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.2.0
with:
rust-toolchain: nightly-2024-05-22
coverage-args: --ignore-filename-regex='/.cargo/git' --output ./coverage.md
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions .github/workflows/on_pull_request_build_contracts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: On pull request, build contracts

on:
pull_request:

permissions:
contents: write

jobs:
build:
uses: multiversx/mx-sc-actions/.github/workflows/reproducible-build.yml@v3.2.0
with:
image_tag: v7.0.0
package_whole_project_src: true
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: On release build and attach artifacts

on:
release:
types: [published]

permissions:
contents: write

jobs:
build:
uses: multiversx/mx-sc-actions/.github/workflows/reproducible-build.yml@v3.2.0
with:
image_tag: v7.0.0
attach_to_existing_release: true
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Generated by Cargo
# will have compiled files and executables
**/target/
**/output/

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

# VSCode specific files
.vscode/*

# ignore snippets folder from another branch
dex/erdjs-snippets/
Loading

0 comments on commit 581d6c2

Please sign in to comment.