Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9d0be50
Structure types to use ws inside wasm
iduartgomez Nov 19, 2022
3f5619b
Add wasm support
iduartgomez Nov 23, 2022
63d6118
Change CI pipeline
iduartgomez Nov 25, 2022
08ea0a3
Add tests for rust ws client api
iduartgomez Nov 25, 2022
ddff17e
Merge branch 'main' of github.com:freenet/locutus into issue-350
iduartgomez Nov 25, 2022
3283b68
Improve CI test matrix
iduartgomez Nov 25, 2022
4d4f9e3
Disable LLVM backend temporarily
iduartgomez Nov 25, 2022
399f895
Disable LLVM backend temporarily
iduartgomez Nov 25, 2022
8afc3cc
Merge branch 'issue-350' into issue-246
iduartgomez Nov 25, 2022
1efd5e8
Remove dead file
iduartgomez Nov 25, 2022
51c96cd
Merge branch 'issue-350' into issue-246
iduartgomez Nov 25, 2022
7b785e8
Create lib
iduartgomez Nov 25, 2022
fc27245
Merge branch 'main' into issue-246
iduartgomez Dec 1, 2022
a80a075
Add functionality so is possible to call host functions from module
iduartgomez Dec 11, 2022
7fce387
More exhaustive tests
netsirius Dec 16, 2022
da4204d
Merge remote-tracking branch 'hsantos/add-component-testing' into iss…
iduartgomez Dec 17, 2022
63dcfdf
Improve component test setup
iduartgomez Dec 17, 2022
8ae4591
Merge remote-tracking branch 'origin' into issue-246
iduartgomez Dec 20, 2022
3d65373
Add native func calls (time_now)
iduartgomez Dec 21, 2022
c0e6218
Merge branch 'main' into issue-246
iduartgomez Dec 23, 2022
8880ac8
Merge branch 'main' into issue-246
iduartgomez Dec 28, 2022
5a96a22
Add token assignment validation
iduartgomez Dec 28, 2022
a962973
wip: ntiflood token contract
iduartgomez Jan 14, 2023
a2140c4
wip: add some aft functions
iduartgomez Jan 14, 2023
71bb494
Merge branch 'main' of github.com:freenet/locutus into issue-246
iduartgomez Jan 14, 2023
8de61d2
add aft component logic
iduartgomez Jan 15, 2023
6539858
More aft component logic
iduartgomez Jan 19, 2023
9128aed
Complete component logic
iduartgomez Jan 24, 2023
6847566
Merge remote-tracking branch 'origin' into issue-246
iduartgomez Jan 24, 2023
813e060
Fix token allocation logic to allocate oldest possible
iduartgomez Jan 28, 2023
f719fcb
Complete missing token record functionality
iduartgomez Jan 28, 2023
f8f9fdb
Merge branch 'main' of github.com:freenet/locutus into issue-246
iduartgomez Jan 28, 2023
4ab1209
Update deps
iduartgomez Jan 28, 2023
fb6eea5
Cargo fmt
iduartgomez Jan 28, 2023
7c89344
Encode assignee
iduartgomez Jan 29, 2023
6a163fc
Add missing hour and minute normalizations
iduartgomez Jan 29, 2023
6e16e45
Fix some CI problems
iduartgomez Jan 29, 2023
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
31 changes: 25 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,19 @@ jobs:

- uses: actions/checkout@v3

- uses: actions/cache@v2
with:
path: ~/.cargo
key: cargo-registry-${{ hashFiles('Cargo.lock') }}
restore-keys: cargo-registry-

- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: "true"
default: "true"

- uses: Swatinem/rust-cache@v2

- name: Build
run: |
cargo build --locked
Expand All @@ -57,6 +61,13 @@ jobs:
- name: Test - features
run: cargo test --workspace ${{ matrix.args }}

- name: Cache cargo registry
if: always()
uses: actions/cache@v2
with:
path: ~/.cargo
key: cargo-registry-${{ hashFiles('Cargo.lock') }}

build_target:
name: Build targets

Expand All @@ -76,15 +87,19 @@ jobs:

- uses: actions/checkout@v3

- uses: actions/cache@v2
with:
path: ~/.cargo
key: cargo-registry-${{ hashFiles('Cargo.lock') }}
restore-keys: cargo-registry-

- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: "true"
default: "true"

- uses: Swatinem/rust-cache@v2

- name: Add dependencies
run: |
rustup target add wasm32-unknown-unknown
Expand All @@ -110,6 +125,12 @@ jobs:

- uses: actions/checkout@v3

- uses: actions/cache@v2
with:
path: ~/.cargo
key: cargo-registry-${{ hashFiles('Cargo.lock') }}
restore-keys: cargo-registry-

- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand All @@ -118,8 +139,6 @@ jobs:
override: "true"
default: "true"

- uses: Swatinem/rust-cache@v2

- name: Add dependencies
run: |
rustup target add wasm32-unknown-unknown
Expand Down
Loading