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

Release 0.3 #7

Merged
merged 3 commits into from Jul 6, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/bridges.yml
Expand Up @@ -29,7 +29,8 @@ jobs:
with:
path: action

- uses: actions/checkout@v2
- name: Checkout repo under test
uses: actions/checkout@v2
with:
repository: paritytech/parity-bridges-common
fetch-depth: 0
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/cumulus.yml
Expand Up @@ -29,7 +29,8 @@ jobs:
with:
path: action

- uses: actions/checkout@v2
- name: Checkout repo under test
uses: actions/checkout@v2
with:
repository: paritytech/cumulus
fetch-depth: 0
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/polkadot.yml
Expand Up @@ -29,17 +29,13 @@ jobs:
with:
path: action

- uses: actions/checkout@v2
- name: Checkout repo under test
uses: actions/checkout@v2
with:
repository: paritytech/polkadot
fetch-depth: 0
path: repo

- name: debug
run: |
ls -al
pwd
- name: Srtool build
id: srtool_build
uses: ./action
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -17,7 +17,7 @@

## Introduction

[srtool](https://gitlab.com/chevdor/srtool) is a docker image that allows building Substrate WASM Runtimes in a deterministic manner. It ensures that all `srtool` users (and tooling), using the same/latest tag, will produce 100% exactly the same runtime. It enables further trustless verifications.
[srtool](https://github.com/chevdor/srtool) is a docker image that allows building Substrate WASM Runtimes in a deterministic manner. It ensures that all `srtool` users (and tooling), using the same/latest tag, will produce 100% exactly the same runtime. It enables further trustless verifications.

![srtool gh action 512px](resources/logo/srtool-gh-action_512px.png)

Expand All @@ -29,11 +29,11 @@ Gitlab users are not left behind and can use the 2 first options mentioned below

There are now several ways to use `srtool` in your project:

- using `srtool` [via alias](https://gitlab.com/chevdor/srtool#user-content-using-an-alias): powerful but very verbose and prone to errors. This is for developers. This option is being deprecated and not recommended.
- using `srtool` [via alias](https://github.com/chevdor/srtool#user-content-using-an-alias): powerful but very verbose and prone to errors. This is for developers. This option is being deprecated and not recommended.

- using the [srtool-cli](https://gitlab.com/chevdor/srtool-cli): much easier to use and removes a whole bunch of potential user’s mistakes. This is for developers.
- using the [srtool-cli](https://github.com/chevdor/srtool-cli): much easier to use and removes a whole bunch of potential user’s mistakes. This is for developers.

- using the [srtool-app](https://gitlab.com/chevdor/srtool-app): the easiest option of all thanks to its GUI. This is good for non-developers.
- using the [srtool-app](https://github.com/chevdor/srtool-app): the easiest option of all thanks to its GUI. This is good for non-developers.

- using the Github actions from [this repo](https://github.com/chevdor/srtool-actions). This is for your automatic CI.

Expand Down
8 changes: 4 additions & 4 deletions README_src.adoc
Expand Up @@ -13,7 +13,7 @@ a| image::https://github.com/chevdor/srtool-actions/actions/workflows/polkadot.y

== Introduction

https://gitlab.com/chevdor/srtool[srtool] is a docker image that allows building Substrate WASM Runtimes in a deterministic manner. It ensures that all `srtool` users (and tooling), using the same/latest tag, will produce 100% exactly the same runtime. It enables further trustless verifications.
https://github.com/chevdor/srtool[srtool] is a docker image that allows building Substrate WASM Runtimes in a deterministic manner. It ensures that all `srtool` users (and tooling), using the same/latest tag, will produce 100% exactly the same runtime. It enables further trustless verifications.

image::resources/logo/srtool-gh-action_512px.png[align=center, width=25%]

Expand All @@ -25,9 +25,9 @@ NOTE: Gitlab users are not left behind and can use the 2 first options mentioned

There are now several ways to use `srtool` in your project:

- using `srtool` https://gitlab.com/chevdor/srtool#user-content-using-an-alias[via alias]: powerful but very verbose and prone to errors. This is for developers. This option is being deprecated and not recommended.
- using the https://gitlab.com/chevdor/srtool-cli[srtool-cli]: much easier to use and removes a whole bunch of potential user's mistakes. This is for developers.
- using the https://gitlab.com/chevdor/srtool-app[srtool-app]: the easiest option of all thanks to its GUI. This is good for non-developers.
- using `srtool` https://github.com/chevdor/srtool#user-content-using-an-alias[via alias]: powerful but very verbose and prone to errors. This is for developers. This option is being deprecated and not recommended.
- using the https://github.com/chevdor/srtool-cli[srtool-cli]: much easier to use and removes a whole bunch of potential user's mistakes. This is for developers.
- using the https://github.com/chevdor/srtool-app[srtool-app]: the easiest option of all thanks to its GUI. This is good for non-developers.
- using the Github actions from https://github.com/chevdor/srtool-actions[this repo]. This is for your automatic CI.

== Requirements
Expand Down
2 changes: 1 addition & 1 deletion justfile
@@ -1,4 +1,4 @@
DEV_IMAGE := "nightly-2021-02-25-dev"
DEV_IMAGE := "1.53.0"

# List available commands
default:
Expand Down