changes names

pull/3509/head
filip mertens 2 years ago
parent cbae548f3b
commit 74fd37f8a6
  1. 10
      .circleci/config.yml
  2. 19
      apps/remix-ide/ci/deploy_from_travis_remix-alpha.sh
  3. 19
      apps/remix-ide/ci/deploy_from_travis_remix-beta.sh
  4. 19
      apps/remix-ide/ci/deploy_from_travis_remix-live.sh
  5. 8
      apps/remix-ide/ci/deploy_from_travis_remix-test.sh

@ -260,7 +260,7 @@ jobs:
- attach_workspace:
at: .
- run: unzip ./persist/predeploy.zip
- run: ./apps/remix-ide/ci/deploy_from_travis_remix-test.sh
- run: ./apps/remix-ide/ci/deploy_from_travis_remix-<< parameters.script >>.sh
workflows:
run_flaky_tests:
@ -328,7 +328,7 @@ workflows:
only: ['master', 'remix_live', 'remix_beta', 'fixdeploy']
- deploy-build:
script: "live"
name: "live"
name: "deploy-live"
requires:
- lint
- remix-libs
@ -340,7 +340,7 @@ workflows:
only: remix_live
- deploy-build:
script: "alpha"
name: "alpha"
name: "deploy-alpha"
requires:
- lint
- remix-libs
@ -352,7 +352,7 @@ workflows:
only: master
- deploy-build:
script: "beta"
name: "beta"
name: "deploy-beta"
requires:
- lint
- remix-libs
@ -364,7 +364,7 @@ workflows:
only: remix_beta
- deploy-build:
script: "test"
name: "test"
name: "deploy-test"
requires:
- predeploy
filters:

@ -1,24 +1,15 @@
#!/bin/bash
set -e
SHA=`git rev-parse --short --verify HEAD`
cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL"
git checkout --orphan gh-pages
git rm --cached -r -f .
echo "# Automatic build" > README.md
echo "Built website from \`$SHA\`. See https://github.com/ethereum/remix-ide/ for details." >> README.md
echo "To use an offline copy, download \`remix-$SHA.zip\`." >> README.md
cp -r $FILES_TO_PACKAGE "./"
rm -rf dist
ls
FILES_TO_DEPLOY="assets index.html 404.html *.js *.css favicon.ico"
# ZIP the whole directory
zip -r remix-$SHA.zip $FILES_TO_DEPLOY
# -f is needed because "build" is part of .gitignore
git add -f $FILES_TO_DEPLOY remix-$SHA.zip
zip -r remix-$SHA.zip .
git add .
git commit -m "Built website from {$SHA}."
git push -f git@github.com:ethereum/remix-live-alpha.git gh-pages

@ -1,24 +1,15 @@
#!/bin/bash
set -e
SHA=`git rev-parse --short --verify HEAD`
cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL"
git checkout --orphan gh-pages
git rm --cached -r -f .
echo "# Automatic build" > README.md
echo "Built website from \`$SHA\`. See https://github.com/ethereum/remix-ide/ for details." >> README.md
echo "To use an offline copy, download \`remix-$SHA.zip\`." >> README.md
cp -r $FILES_TO_PACKAGE "./"
rm -rf dist
ls
FILES_TO_DEPLOY="assets index.html 404.html *.js *.css favicon.ico"
# ZIP the whole directory
zip -r remix-$SHA.zip $FILES_TO_DEPLOY
# -f is needed because "build" is part of .gitignore
git add -f $FILES_TO_DEPLOY remix-$SHA.zip
zip -r remix-$SHA.zip .
git add .
git commit -m "Built website from {$SHA}."
git push -f git@github.com:ethereum/remix-live-beta.git gh-pages

@ -1,24 +1,15 @@
#!/bin/bash
set -e
SHA=`git rev-parse --short --verify HEAD`
cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL"
git checkout --orphan gh-pages
git rm --cached -r -f .
echo "# Automatic build" > README.md
echo "Built website from \`$SHA\`. See https://github.com/ethereum/remix-ide/ for details." >> README.md
echo "To use an offline copy, download \`remix-$SHA.zip\`." >> README.md
cp -r $FILES_TO_PACKAGE "./"
rm -rf dist
ls
FILES_TO_DEPLOY="assets index.html 404.html *.js *.css favicon.ico"
# ZIP the whole directory
zip -r remix-$SHA.zip $FILES_TO_DEPLOY
# -f is needed because "build" is part of .gitignore
git add -f $FILES_TO_DEPLOY remix-$SHA.zip
zip -r remix-$SHA.zip .
git add .
git commit -m "Built website from {$SHA}."
git push -f git@github.com:ethereum/remix-live.git gh-pages

@ -8,16 +8,8 @@ cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL"
zip -r remix-$SHA.zip .
git add .
git status
git commit -m "Built website from {$SHA}."
ls -la
git status
git push -f git@github.com:bunsenstraat/remix-test.git master:gh-pages
Loading…
Cancel
Save