You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":"conf","path":"conf","contentType":"directory"},{"name":"debian","path":"debian","contentType":"directory"},{"name":"docs","path":"docs","contentType":"directory"},{"name":"mu","path":"mu","contentType":"directory"},{"name":"package","path":"package","contentType":"directory"},{"name":"tests","path":"tests","contentType":"directory"},{"name":".appveyor.yml","path":".appveyor.yml","contentType":"file"},{"name":".coveragerc","path":".coveragerc","contentType":"file"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".travis.yml","path":".travis.yml","contentType":"file"},{"name":"AUTHORS","path":"AUTHORS","contentType":"file"},{"name":"CHANGES.rst","path":"CHANGES.rst","contentType":"file"},{"name":"CONTRIBUTING.rst","path":"CONTRIBUTING.rst","contentType":"file"},{"name":"LICENSE","path":"LICENSE","contentType":"file"},{"name":"MANIFEST.in","path":"MANIFEST.in","contentType":"file"},{"name":"Makefile","path":"Makefile","contentType":"file"},{"name":"README.rst","path":"README.rst","contentType":"file"},{"name":"requirements.txt","path":"requirements.txt","contentType":"file"},{"name":"run.py","path":"run.py","contentType":"file"},{"name":"setup.py","path":"setup.py","contentType":"file"}],"totalCount":20}},"fileTreeProcessingTime":9.219655,"foldersToFetch":[],"incompleteFileTree":false,"repo":{"id":137440473,"defaultBranch":"master","name":"mu","ownerLogin":"p-v-o-s","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2018-06-15T04:21:24.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/2006840?v=4","public":true,"private":false,"isOrgOwned":true},"codeLineWrapEnabled":false,"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"win_pyqt_pip","listCacheKey":"v0:1529216283.0","canEdit":false,"refType":"branch","currentOid":"1840a6aced937c7da62c9195bc43f8489338df5a"},"path":".travis.yml","currentUser":null,"blob":{"rawLines":["# Travis can building for Linux (Ubuntu 14.04 x64) and OS X (El Capitan)","matrix:"," include:"," - os: linux"," dist: trusty"," sudo: required"," language: generic",""," - os: osx"," sudo: required"," language: generic","","before_install:"," # OS and Python info"," - uname -a"," - if [ \"$TRAVIS_OS_NAME\" = \"linux\" ]; then python3 -c \"import sys; print(sys.executable)\"; fi"," - if [ \"$TRAVIS_OS_NAME\" = \"linux\" ]; then sudo python3 -c \"import sys; print(sys.executable)\"; fi","","install:"," # Python 3 and pip 3 installation depends OS (and for now install PyQt \u0026 QScintilla in Linux as well)"," - if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then bash package/install_osx.sh; fi"," - if [ \"$TRAVIS_OS_NAME\" = \"linux\" ]; then bash package/install_linux.sh; fi",""," # Install Mu dependencies (PyQt \u0026 QScintilla will be absorbed in requirements.txt once ready)"," - sudo pip3 install -r requirements.txt"," - if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then sudo pip3 install PyQt5; fi"," - if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then sudo pip3 install QScintilla; fi",""," # Install packaging dependencies, macOS depends on update not yet release https://github.com/pyinstaller/pyinstaller/pull/1965"," - sudo pip3 install git+git://github.com/pyinstaller/pyinstaller.git@483c819d6a256b58db6740696a901bd41c313f0c",""," # Check everything was correctly installed"," - echo $PATH"," - python3 --version"," - python3 -c \"import struct; print(struct.calcsize('P') * 8)\""," - python3 -c \"import sys; print(sys.executable)\""," - pip3 --version"," - pip3 freeze"," - python3 -c \"import PyQt5\""," - python3 -c \"import PyQt5.Qsci\"","","script:"," # Run the tests, at the moment there is a segmentation fault on Linux, this will go away with Py3.5"," - if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then make check; fi",""," # Package it"," - pyinstaller package/pyinstaller.spec"," - du -sk dist/"," - if [ \"$TRAVIS_OS_NAME\" = \"linux\" ]; then mv dist/mu dist/mu-$(date '+%Y-%m-%d_%H_%M_%S'); fi"," - if [ \"$TRAVIS_OS_NAME\" = \"osx\" ]; then cd dist \u0026\u0026 zip --symlinks -r mu-$(date '+%Y-%m-%d_%H_%M_%S').zip mu.app \u0026\u0026 rm -r mu.app \u0026\u0026 rm mu \u0026\u0026 cd ..; fi","","# Deploy the build version in an S3 bucket","deploy:"," provider: s3"," access_key_id: AKIAJYJV7NN6HVHCX5NQ"," secret_access_key:"," secure: QHLfRUdFQX+TejhRBkgNvySkaQOskXji+iduIvKRtzvvhyr3QJHKcMNtO426GRFyKhz6sK3shqn4d5iu/m03gtbv+u1pL9pp0J2GEePzQVP8v24q9Y3oxaXaA7Tm7L2vSIrB7uhJvG5D9H0bVL9my61JvXhvySH47jLvhqHH4F9LdPzby1DXds1Z+R4YNMKE0Z4KmNOhiBHkmKdDcp61fZ91gGiScFIjaXvDb50zdGKjXTQy2t4OtFt4kVbTZWijzxKPCSLZkErfcdNNrCNeMEktk6IEV2KVru9XhDNzzslWwwsR1r2hQI39oVULa3fYXK6W7am8WXVZ6cnJB+yBsNWro3Tp5oiNCWSe6fKDEp+Io+qyhZ+R5PSdzhyRYPUHPCIY/fP/dap/4M/MAO3hZFA3mxjK/vUOc6mtMD/wTE659K4/i7PNYtKFndXXpLpYHHaTis44NLZFIxvs9wWG/ljToYDDK20vG317k5TZUZB/6EipW1DeoO/9qBUxgTdfJypp58kcZNvntUVa4ezf/Bx01ZCMFAk234l7+xAFYI7+m9ITqAPlKWI230Ki5ShzyV+kYcI/GS9cT75iok6+zIWWfyQhKUMDYZ1qb/UDM5Gz9RXoIah0UJTjFd4b3bO6Awdrs2V5Vv2EgMWuKDaHs1s3uONH+PGTluROuqFju/s="," bucket: ardublockly-builds"," skip_cleanup: true"," local-dir: dist/"," upload-dir: microbit/$TRAVIS_OS_NAME"," acl: public_read"," on:"," repo: mu-editor/mu"," branch: [master]","","notifications:"," email:"," on_success: change"," on_failure: change"],"stylingDirectives":null,"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/p-v-o-s/mu/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":".travis.yml","displayUrl":"https://github.com/p-v-o-s/mu/blob/win_pyqt_pip/.travis.yml?raw=true","headerInfo":{"blobSize":"3.07 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":"https://desktop.github.com","isGitLfs":false,"onBranch":true,"shortPath":"2f7b73d","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fp-v-o-s%2Fmu%2Fblob%2Fwin_pyqt_pip%2F.travis.yml","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"70","truncatedSloc":"60"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"YAML","languageID":407,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/p-v-o-s/mu/blob/win_pyqt_pip/.travis.yml","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/p-v-o-s/mu/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/p-v-o-s/mu/raw/refs/heads/win_pyqt_pip/.travis.yml","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":true,"symbols":[]}},"copilotInfo":null,"copilotAccessAllowed":false,"modelsAccessAllowed":false,"modelsRepoIntegrationEnabled":false,"csrf_tokens":{"/p-v-o-s/mu/branches":{"post":"EPLjoIph-9SPF_cUPdg9dgZBOSeIvX7VdtaNE8PfZsOG2pHk9ZhjLodAaY8FjWo7xI_exVNM0UuvlJ_CXLO8Xg"},"/repos/preferences":{"post":"6dPcTtdx61S7yGBI9W5o_nhNO0YMvWyF_lTDwdnaZp7bUTq5Wx8RuMm72A0eHDUv3DLX70hmnlD5k0uuLORRGA"}}},"title":"mu/.travis.yml at win_pyqt_pip · p-v-o-s/mu","appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-263cab1760dd.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-1b17b3e7786a.js","githubDevUrl":null,"enabled_features":{"code_nav_ui_events":false,"react_blob_overlay":false,"accessible_code_button":true}}}