-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from rainlanguage/2024-01-06-bindings-crate
Bindings crate
- Loading branch information
Showing
29 changed files
with
2,926 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Rainix CI | ||
on: [push] | ||
|
||
jobs: | ||
standard-tests: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
task: [ci-rs-test, ci-rs-artifacts] | ||
include: | ||
# Solidity doesn't need to be tested on multiple platforms | ||
- os: ubuntu-latest | ||
task: ci-sol-test | ||
- os: ubuntu-latest | ||
task: ci-sol-static | ||
- os: ubuntu-latest | ||
task: ci-sol-artifacts | ||
# We don't need to do rust static analysis on multiple platforms | ||
- os: ubuntu-latest | ||
task: ci-rs-static | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Nix | ||
uses: DeterminateSystems/nix-installer-action@v4 | ||
- uses: DeterminateSystems/magic-nix-cache-action@v2 | ||
|
||
- run: nix run .#ci-prep | ||
- run: nix run .#${{ matrix.task }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
out | ||
cache | ||
result | ||
meta | ||
meta | ||
target |
Oops, something went wrong.