Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganize and update #225

Merged
merged 7 commits into from
Nov 27, 2024
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
16 changes: 0 additions & 16 deletions .github/dependabot.yml

This file was deleted.

73 changes: 0 additions & 73 deletions .github/scripts/readme-quick-deploy.sh

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/readme-ci.yml

This file was deleted.

32 changes: 6 additions & 26 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,13 @@
name: Tests
on:
repository_dispatch:
types: [tests-report]
push:
on: push
jobs:
tests:
strategy:
matrix:
platform: [ubuntu-latest] # mac-os currently in progress
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
- name: Build wasm files
run: source scripts/flags.sh && rustup target add wasm32-unknown-unknown && cargo build --all --target wasm32-unknown-unknown --release && cp target/wasm32-unknown-unknown/release/*.wasm ./res/
- name: Run unit tests
env:
IS_GITHUB_ACTION: true
run: cd nft && cargo test -- --nocapture --color=always
- name: Run Rust integration tests
run: cd integration-tests/rs && cargo run --example integration-tests
- name: Run TypeScript integration tests
run: cd integration-tests/ts && npm i && npm run test
- uses: actions/checkout@v4
- name: Install and test modules
run: |
cargo test
6 changes: 0 additions & 6 deletions .gitpod.Dockerfile

This file was deleted.

7 changes: 0 additions & 7 deletions .gitpod.yml

This file was deleted.

38 changes: 16 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
[profile.release]
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
[package]
name = "non-fungible-token"
version = "1.1.0"
authors = ["Near Inc <[email protected]>"]
edition = "2018"

[workspace]
# remember to include a member for each contract
members = [
"nft",
"test-approval-receiver",
"test-token-receiver",
]
exclude = [
"integration-tests"
]
[lib]
crate-type = ["cdylib", "rlib"]

# This can be removed when near-sdk is updated
# Unfortuantely, this crate was yanked by the author and this is needed
[patch.crates-io]
parity-secp256k1 = { git = 'https://github.com/paritytech/rust-secp256k1.git' }
[dependencies]
near-sdk = "5.5.0"
near-contract-standards = "5.5.0"

[dev-dependencies]
near-sdk = { version = "5.5.0", features = ["unit-testing"] }
near-workspaces = { version = "0.14.1", features = ["unstable"] }
anyhow = "1.0"
tokio = { version = "1.41.0", features = ["full"] }
98 changes: 0 additions & 98 deletions README-Windows.md

This file was deleted.

Loading