Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 0c09c62
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Thu Jul 18 20:56:03 2024 -0500

    Revert integration_tests.yml

commit c46937a
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Wed Jul 17 13:18:11 2024 -0500

    Update basic.yml to cache only cargo deps

    Nightly toolchain is required for integration_tests

commit 7773cb0
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Wed Jul 17 12:45:09 2024 -0500

    Set integration_tests toolchain to latest stable

commit 74aea83
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Thu Jul 11 02:21:52 2024 -0500

    Cargo schema + fix orch wasm build and tests

commit e8081ac
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Thu Jul 11 00:40:32 2024 -0500

    Fix cargo stuff

commit d5a1850
Merge: 87925b2 5918cbe
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Wed Jul 10 23:48:52 2024 -0500

    Merge branch 'development' into feature/cw-orch-interface

commit 87925b2
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Wed Jul 10 23:47:50 2024 -0500

    Add cache to basic.yml

commit 2951f8c
Author: Gabriel Lopez <glopez11193@gmail.com>
Date:   Wed Jul 10 23:47:40 2024 -0500

    Fix lints

    Also updates just lint to match basic.yml

commit 5918cbe
Author: noah <noahsaso@gmail.com>
Date:   Mon Jul 8 18:33:22 2024 -0400

    OmniFlix NFT (x/onft) staked voting module (DA0-DA0#838)

commit ac249f4
Author: noah <noahsaso@gmail.com>
Date:   Sat Jul 6 23:11:22 2024 -0400

    Improve pre-propose proposal creation permission granularity (and bump versions to v2.5.0) (DA0-DA0#843)

commit 8be18d1
Author: bekauz <bekauz@protonmail.com>
Date:   Mon Jun 17 18:05:24 2024 +0200

    staking rewards distribution followup (DA0-DA0#835)

    Co-authored-by: Noah Saso <noahsaso@gmail.com>
    Co-authored-by: Jake Hartnell <jake.hartnell@gmail.com>

commit bb8224e
Author: noah <noahsaso@gmail.com>
Date:   Thu Jun 6 00:32:12 2024 -0400

    moved .cargo/config to .cargo/config.toml (DA0-DA0#837)

commit 87485be
Author: bekauz <bekauz@protonmail.com>
Date:   Wed May 22 18:39:06 2024 +0200

    bump cw-std to 1.5.4 (DA0-DA0#824)

commit 8c945ac
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Fri May 17 09:09:32 2024 +0000

    Added other derives

commit f720001
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Fri May 17 09:06:45 2024 +0000

    Added derive fns

commit 003f87d
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Fri May 17 08:54:07 2024 +0000

    Fix tests

commit 88ec5ed
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Fri May 17 08:52:54 2024 +0000

    Added Queryfns on voting

commit 3440d34
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Fri May 17 08:06:38 2024 +0000

    Finalize test changes

commit 9492e37
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Fri May 17 07:40:35 2024 +0000

    More tests

commit 5883c87
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Thu May 16 17:24:41 2024 +0000

    Added tests with cw-orch

commit b01de1c
Author: Kayanski <kowalski.kowalskin@gmail.com>
Date:   Thu May 16 14:41:02 2024 +0000

    First test modifications

commit 3ab7017
Author: noah <noahsaso@gmail.com>
Date:   Mon Apr 1 20:04:11 2024 +0200

    Update versions to 2.4.2 (DA0-DA0#817)

commit caea80a
Author: noah <noahsaso@gmail.com>
Date:   Mon Apr 1 19:32:50 2024 +0200

    support kujira's /kujira.denom... tokenfactory fork (DA0-DA0#816)
  • Loading branch information
ismellike committed Jul 19, 2024
1 parent 5040578 commit 3a3da47
Show file tree
Hide file tree
Showing 214 changed files with 18,299 additions and 2,910 deletions.
1 change: 1 addition & 0 deletions .cargo/config → .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ all-test = "test --workspace"
unit-test = "test --lib"
integration-test = "test --package integration-tests -- --ignored --test-threads 1 -Z unstable-options --report-time"
test-tube = "test --features test-tube"
schema = "run --example schema"

[env]
RUSTFLAGS = "-C link-arg=-s"
18 changes: 18 additions & 0 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ jobs:
target: wasm32-unknown-unknown
override: true

- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-deps-${{ hashFiles('**/Cargo.lock') }}

- name: Run tests
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -53,6 +62,15 @@ jobs:
override: true
components: rustfmt, clippy

- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-deps-${{ hashFiles('**/Cargo.lock') }}

- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
Expand Down
41 changes: 20 additions & 21 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,26 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: llvm-tools-preview
- name: cargo install cargo-llvm-cov
run: cargo install cargo-llvm-cov
- name: cargo llvm-cov
run: cargo llvm-cov --workspace --lcov --output-path lcov.info
- name: Codecov
# You may pin to the exact commit or the version.
# uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378
uses: codecov/codecov-action@v3
with:
# Repository upload token - get it from codecov.io. Required only for private repositories
# token: # optional
# Specify whether the Codecov output should be verbose
verbose: true
fail_ci_if_error: true
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: llvm-tools-preview
- name: cargo install cargo-llvm-cov
run: cargo install cargo-llvm-cov
- name: cargo llvm-cov
run: cargo llvm-cov --workspace --lcov --output-path lcov.info
- name: Codecov
# You may pin to the exact commit or the version.
# uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378
uses: codecov/codecov-action@v3
with:
# Repository upload token - get it from codecov.io.
token: ${{ secrets.CODECOV_TOKEN }}
# Specify whether the Codecov output should be verbose
verbose: true
fail_ci_if_error: true
Loading

0 comments on commit 3a3da47

Please sign in to comment.