Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
c96337aa
Unverified
Commit
c96337aa
authored
Jun 29, 2021
by
Kelvin Fichter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add workflow for running SNX test suite
parent
8a8c7096
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
0 deletions
+70
-0
ext-test-snx.yml
.github/workflows/ext-test-snx.yml
+65
-0
snx.sh
integration-tests/ext-test/snx.sh
+5
-0
No files found.
.github/workflows/ext-test-snx.yml
0 → 100644
View file @
c96337aa
name
:
Exteral Tests (Synthetix)
on
:
workflow_dispatch
jobs
:
integration
:
runs-on
:
ubuntu-latest
env
:
DOCKER_BUILDKIT
:
1
COMPOSE_DOCKER_CLI_BUILD
:
1
steps
:
-
uses
:
actions/checkout@v2
# Required for some installation in the SNX repo
-
uses
:
webfactory/ssh-agent@v0.4.1
with
:
ssh-private-key
:
${{ secrets.SSH_PRIVATE_KEY_READ }}
-
name
:
Get yarn cache directory path
id
:
yarn-cache-dir-path
run
:
echo "::set-output name=dir::$(yarn cache dir)"
-
uses
:
actions/cache@v2
id
:
yarn-cache
with
:
path
:
${{ steps.yarn-cache-dir-path.outputs.dir }}
key
:
${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys
:
|
${{ runner.os }}-yarn-
-
name
:
Build the services
working-directory
:
./ops
run
:
./scripts/build-ci.sh
-
name
:
Bring the stack up
working-directory
:
./ops
run
:
|
./scripts/stats.sh &
docker-compose up -d
-
name
:
Wait for the Sequencer node
working-directory
:
./ops
run
:
./scripts/wait-for-sequencer.sh
-
name
:
Run the SNX test suite
working-directory
:
./integration-tests
run
:
./ext-test/snx.sh
-
name
:
Collect docker logs on failure
if
:
failure()
uses
:
jwalton/gh-docker-logs@v1
with
:
images
:
'
ethereumoptimism/builder,ethereumoptimism/hardhat,ethereumoptimism/deployer,ethereumoptimism/data-transport-layer,ethereumoptimism/l2geth,ethereumoptimism/message-relayer,ethereumoptimism/batch-submitter,ethereumoptimism/l2geth,ethereumoptimism/integration-tests'
dest
:
'
~/logs'
-
name
:
Tar logs
if
:
failure()
run
:
tar cvzf ./logs.tgz ~/logs
-
name
:
Upload logs to GitHub
if
:
failure()
uses
:
actions/upload-artifact@master
with
:
name
:
logs.tgz
path
:
./logs.tgz
integration-tests/ext-test/snx.sh
0 → 100755
View file @
c96337aa
#!/bin/bash
git clone
--depth
=
1
--branch
develop https://github.com/Synthetixio/synthetix.git
cd
synthetix
npm
install
npx hardhat
--config
./hardhat.config.js
test
:integration:l2
--compile
--deploy
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment