Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
c39f2141
Commit
c39f2141
authored
May 15, 2020
by
ioedeveloper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added config.yml
parent
7d0d8bfe
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
197 additions
and
3 deletions
+197
-3
config.yml
.circleci/config.yml
+194
-0
browser_tests_chrome.sh
apps/remix-ide/ci/browser_tests_chrome.sh
+1
-1
browser_tests_firefox.sh
apps/remix-ide/ci/browser_tests_firefox.sh
+1
-1
browser_tests_run_deploy.sh
apps/remix-ide/ci/browser_tests_run_deploy.sh
+1
-1
No files found.
.circleci/config.yml
0 → 100644
View file @
c39f2141
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version
:
2
jobs
:
remix-ide-chrome
:
docker
:
# specify the version you desire here
-
image
:
circleci/node:9.11.2-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
resource_class
:
xlarge
# - image
:
circleci/mongo:3.4.4
environment
:
-
COMMIT_AUTHOR_EMAIL
:
"
yann@ethereum.org"
-
COMMIT_AUTHOR
:
"
Circle
CI"
-
FILES_TO_PACKAGE
:
"
assets
background.js
build
icon.png
index.html
manifest.json
README.md
soljson.js
package.json"
working_directory
:
~/remix-project
parallelism
:
20
steps
:
-
checkout
-
run
:
npm install
-
run
:
npm run lint && npm run test && npm run make-mock-compiler
-
run
:
name
:
Download Selenium
command
:
./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js
-
run
:
name
:
Start Selenium
command
:
./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide/seleniumConfig.js
background
:
true
-
run
:
./apps/remix-ide/ci/browser_tests_chrome.sh
-
store_test_results
:
path
:
./apps/remix-ide/reports/tests
-
store_artifacts
:
path
:
./apps/remix-ide/reports/screenshots
remix-ide-firefox
:
docker
:
# specify the version you desire here
-
image
:
circleci/node:9.11.2-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
resource_class
:
xlarge
# - image
:
circleci/mongo:3.4.4
environment
:
-
COMMIT_AUTHOR_EMAIL
:
"
yann@ethereum.org"
-
COMMIT_AUTHOR
:
"
Circle
CI"
-
FILES_TO_PACKAGE
:
"
assets
background.js
build
icon.png
index.html
manifest.json
README.md
soljson.js
package.json"
working_directory
:
~/remix-project
parallelism
:
20
steps
:
-
checkout
-
run
:
npm install
-
run
:
npm run lint && npm run test && npm run make-mock-compiler
-
run
:
name
:
Download Selenium
command
:
./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js
-
run
:
name
:
Start Selenium
command
:
./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide/seleniumConfig.js
background
:
true
-
run
:
name
:
Download Latest Firefox
command
:
sudo apt-get purge -y firefox && wget https://sourceforge.net/projects/ubuntuzilla/files/mozilla/apt/pool/main/f/firefox-mozilla-build/firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb
-
run
:
name
:
Install Firefox
command
:
sudo dpkg -i firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb
-
run
:
./apps/remix-ide/ci/browser_tests_firefox.sh
-
store_test_results
:
path
:
./apps/remix-ide/reports/tests
-
store_artifacts
:
path
:
./apps/remix-ide/reports/screenshots
remix-ide-run-deploy
:
docker
:
# specify the version you desire here
-
image
:
circleci/node:9.11.2-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
resource_class
:
xlarge
# - image
:
circleci/mongo:3.4.4
environment
:
-
COMMIT_AUTHOR_EMAIL
:
"
yann@ethereum.org"
-
COMMIT_AUTHOR
:
"
Circle
CI"
-
FILES_TO_PACKAGE
:
"
assets
background.js
build
icon.png
index.html
manifest.json
README.md
soljson.js
package.json"
working_directory
:
~/remix-project
steps
:
-
checkout
-
run
:
npm install
-
run
:
npm run lint && npm run test && npm run make-mock-compiler
-
run
:
name
:
Download Selenium
command
:
./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js
-
run
:
name
:
Start Selenium
command
:
./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide/seleniumConfig.js
background
:
true
-
run
:
./apps/remix-ide/ci/browser_tests_run_deploy.sh
-
store_artifacts
:
path
:
./apps/remix-ide/reports/screenshots
deploy-remix-live
:
docker
:
# specify the version you desire here
-
image
:
circleci/node:9.11.2-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
resource_class
:
xlarge
# - image
:
circleci/mongo:3.4.4
environment
:
-
COMMIT_AUTHOR_EMAIL
:
"
yann@ethereum.org"
-
COMMIT_AUTHOR
:
"
Circle
CI"
-
FILES_TO_PACKAGE
:
"
assets
background.js
build
icon.png
index.html
manifest.json
README.md
soljson.js
package.json"
working_directory
:
~/remix-project
steps
:
-
checkout
-
run
:
npm install
-
run
:
npm run lint && npm run test && npm run make-mock-compiler
-
run
:
name
:
Deploy
command
:
|
if [ "${CIRCLE_BRANCH}" == "remix_live" ]; then
./ci/deploy_from_travis_remix-live.sh;
fi
-
store_artifacts
:
path
:
./apps/remix-ide/reports/screenshots
deploy-remix-alpha
:
docker
:
# specify the version you desire here
-
image
:
circleci/node:9.11.2-browsers
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
resource_class
:
xlarge
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image
:
circleci/mongo:3.4.4
environment
:
-
COMMIT_AUTHOR_EMAIL
:
"
yann@ethereum.org"
-
COMMIT_AUTHOR
:
"
Circle
CI"
-
FILES_TO_PACKAGE
:
"
assets
background.js
build
icon.png
index.html
manifest.json
README.md
soljson.js
package.json"
working_directory
:
~/remix-project
steps
:
-
checkout
-
run
:
npm install
-
run
:
npm run lint && npm run test && npm run make-mock-compiler
-
run
:
name
:
Deploy
command
:
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
./ci/deploy_from_travis_remix-alpha.sh;
fi
-
store_artifacts
:
path
:
./apps/reports/screenshots
workflows
:
version
:
2
build_all
:
jobs
:
-
remix-ide-chrome
-
remix-ide-firefox
-
remix-ide-run-deploy
-
deploy-remix-live
:
requires
:
-
remix-ide-chrome
-
remix-ide-firefox
-
remix-ide-run-deploy
filters
:
branches
:
only
:
remix_live
-
deploy-remix-alpha
:
requires
:
-
remix-ide-chrome
-
remix-ide-firefox
-
remix-ide-run-deploy
filters
:
branches
:
only
:
master
\ No newline at end of file
apps/remix-ide/ci/browser_tests_chrome.sh
View file @
c39f2141
...
@@ -7,7 +7,7 @@ setupRemixd () {
...
@@ -7,7 +7,7 @@ setupRemixd () {
cd
contracts
cd
contracts
echo
'sharing folder: '
echo
'sharing folder: '
echo
$PWD
echo
$PWD
./../node_modules/remixd/bin/
remixd
-s
$PWD
--remix-ide
http://127.0.0.1:8080 &
remixd
-s
$PWD
--remix-ide
http://127.0.0.1:8080 &
cd
..
cd
..
}
}
...
...
apps/remix-ide/ci/browser_tests_firefox.sh
View file @
c39f2141
...
@@ -7,7 +7,7 @@ setupRemixd () {
...
@@ -7,7 +7,7 @@ setupRemixd () {
cd
contracts
cd
contracts
echo
'sharing folder: '
echo
'sharing folder: '
echo
$PWD
echo
$PWD
./../node_modules/remixd/bin/
remixd
-s
$PWD
--remix-ide
http://127.0.0.1:8080 &
remixd
-s
$PWD
--remix-ide
http://127.0.0.1:8080 &
cd
..
cd
..
}
}
...
...
apps/remix-ide/ci/browser_tests_run_deploy.sh
View file @
c39f2141
...
@@ -7,7 +7,7 @@ setupRemixd () {
...
@@ -7,7 +7,7 @@ setupRemixd () {
cd
contracts
cd
contracts
echo
'sharing folder: '
echo
'sharing folder: '
echo
$PWD
echo
$PWD
./../node_modules/remixd/bin/
remixd
-s
$PWD
--remix-ide
http://127.0.0.1:8080 &
remixd
-s
$PWD
--remix-ide
http://127.0.0.1:8080 &
cd
..
cd
..
}
}
...
...
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