Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
9a236743
Commit
9a236743
authored
2 years ago
by
Wilfried Kopp
Committed by
Chevdor
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Move down bins to a tmp folder
parent
6c5d7310
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cumulus/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml
+16
-8
16 additions, 8 deletions
...orkflows/release-21_extrinsic-ordering-check-from-two.yml
with
16 additions
and
8 deletions
cumulus/.github/workflows/release-21_extrinsic-ordering-check-from-two.yml
+
16
−
8
View file @
9a236743
...
...
@@ -22,6 +22,7 @@ jobs:
REF_URL
:
${{github.event.inputs.reference_binary_url}}
BIN_BASE
:
polkadot-parachain
BIN_REF
:
polkadot-parachain-ref
TMP
:
./tmp
strategy
:
fail-fast
:
false
matrix
:
...
...
@@ -40,34 +41,41 @@ jobs:
local
:
contracts-rococo-local
steps
:
-
uses
:
actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
# v3.0.2
-
name
:
Create tmp dir
run
:
|
mkdir -p $TMP
pwd
-
name
:
Fetch reference binary
run
:
|
echo Fetching $REF_URL
curl $REF_URL -o $BIN_REF
curl $REF_URL -o
$TMP/
$BIN_REF
chmod a+x $BIN_REF
.
/$BIN_REF --version
$TMP
/$BIN_REF --version
-
name
:
Fetch test binary
run
:
|
echo Fetching $BIN_URL
curl $BIN_URL -o $BIN_BASE
curl $BIN_URL -o
$TMP/
$BIN_BASE
chmod a+x $BIN_BASE
.
/$BIN_BASE --version
$TMP
/$BIN_BASE --version
-
name
:
Start local reference node
run
:
|
echo Running reference on ${{ matrix.local }}
.
/$BIN_REF --chain=${{ matrix.local }} --rpc-port=9934 --ws-port=9945 --base-path=$BIN_REF-base/ &
$TMP
/$BIN_REF --chain=${{ matrix.local }} --rpc-port=9934 --ws-port=9945 --base-path=$
TMP/$
BIN_REF-base/ &
-
name
:
Start local test node
run
:
|
echo Running test on ${{ matrix.local }}
.
/$BIN_BASE --chain=${{ matrix.local }} &
$TMP
/$BIN_BASE --chain=${{ matrix.local }} &
-
name
:
Prepare output
run
:
|
REF_VERSION=$(
.
/$BIN_REF --version)
BIN_VERSION=$(
.
/$BIN_BASE --version)
REF_VERSION=$(
$TMP
/$BIN_REF --version)
BIN_VERSION=$(
$TMP
/$BIN_BASE --version)
echo "Metadata comparison:" >> output.txt
echo "Date: $(date)" >> output.txt
echo "Ref. binary: $REF_URL" >> output.txt
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment