changes names

pull/5370/head
filip mertens 2 years ago committed by bunsenstraat
parent 6a6200f9d8
commit 272a458b67
  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: - attach_workspace:
at: . at: .
- run: unzip ./persist/predeploy.zip - 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: workflows:
run_flaky_tests: run_flaky_tests:
@ -328,7 +328,7 @@ workflows:
only: ['master', 'remix_live', 'remix_beta', 'fixdeploy'] only: ['master', 'remix_live', 'remix_beta', 'fixdeploy']
- deploy-build: - deploy-build:
script: "live" script: "live"
name: "live" name: "deploy-live"
requires: requires:
- lint - lint
- remix-libs - remix-libs
@ -340,7 +340,7 @@ workflows:
only: remix_live only: remix_live
- deploy-build: - deploy-build:
script: "alpha" script: "alpha"
name: "alpha" name: "deploy-alpha"
requires: requires:
- lint - lint
- remix-libs - remix-libs
@ -352,7 +352,7 @@ workflows:
only: master only: master
- deploy-build: - deploy-build:
script: "beta" script: "beta"
name: "beta" name: "deploy-beta"
requires: requires:
- lint - lint
- remix-libs - remix-libs
@ -364,7 +364,7 @@ workflows:
only: remix_beta only: remix_beta
- deploy-build: - deploy-build:
script: "test" script: "test"
name: "test" name: "deploy-test"
requires: requires:
- predeploy - predeploy
filters: filters:

@ -1,24 +1,15 @@
#!/bin/bash #!/bin/bash
set -e set -e
SHA=`git rev-parse --short --verify HEAD` SHA=`git rev-parse --short --verify HEAD`
cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR" git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL" git config user.email "$COMMIT_AUTHOR_EMAIL"
git checkout --orphan gh-pages zip -r remix-$SHA.zip .
git rm --cached -r -f . git add .
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
git commit -m "Built website from {$SHA}." git commit -m "Built website from {$SHA}."
git push -f git@github.com:ethereum/remix-live-alpha.git gh-pages git push -f git@github.com:ethereum/remix-live-alpha.git gh-pages

@ -1,24 +1,15 @@
#!/bin/bash #!/bin/bash
set -e set -e
SHA=`git rev-parse --short --verify HEAD` SHA=`git rev-parse --short --verify HEAD`
cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR" git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL" git config user.email "$COMMIT_AUTHOR_EMAIL"
git checkout --orphan gh-pages zip -r remix-$SHA.zip .
git rm --cached -r -f . git add .
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
git commit -m "Built website from {$SHA}." git commit -m "Built website from {$SHA}."
git push -f git@github.com:ethereum/remix-live-beta.git gh-pages git push -f git@github.com:ethereum/remix-live-beta.git gh-pages

@ -1,24 +1,15 @@
#!/bin/bash #!/bin/bash
set -e set -e
SHA=`git rev-parse --short --verify HEAD` SHA=`git rev-parse --short --verify HEAD`
cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR" git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL" git config user.email "$COMMIT_AUTHOR_EMAIL"
git checkout --orphan gh-pages zip -r remix-$SHA.zip .
git rm --cached -r -f . git add .
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
git commit -m "Built website from {$SHA}." git commit -m "Built website from {$SHA}."
git push -f git@github.com:ethereum/remix-live.git gh-pages git push -f git@github.com:ethereum/remix-live.git gh-pages

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