test deploy

pull/5370/head
filip mertens 2 years ago committed by bunsenstraat
parent 5f34b77e41
commit 969cdb753a
  1. 1
      .circleci/config.yml
  2. 11
      apps/remix-ide/ci/deploy_from_travis_remix-test.sh

@ -260,6 +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
workflows: workflows:
run_flaky_tests: run_flaky_tests:

@ -1,16 +1,21 @@
#!/bin/bash #!/bin/bash
set -e set -e
SHA=`git rev-parse --short --verify HEAD`
cd dist 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-$1.zip . zip -r remix-$SHA.zip .
git add . git add .
git commit -m "Built website from {$1}."
git status
git commit -m "Built website from {$SHA}."
ls -la ls -la
git status git status

Loading…
Cancel
Save