-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test mac and windows executables scripting (#210)
* Added eslint key-spacing rule (#204) * Adding toaster, dynamically checking pewpewVersion (#201) * adding files to dynamically show latest pewpew version on Toaster * cleaning up code for lintter to pass * refactoring code to use tags in S3 * removing files from tsconfig * fixing lint rules * fixing spacing as local linter didnt catch those but the build did * missed one space * adding tests, cleaning up files * removing trailing spaces failing on build * adding DS_Store - make specific file to gitignore * updating storybook to show pewpew latest version output * Added common constants for the different os executables to common - To differentiate Mac in S3, we'll use pewpew.mac as the file name. - These constants will be used by common, agent, and controller * Updated the agent to remove hardcoded pewpew references - The agent will now use os specific versions of the pewpew executable: pewpew (Linux), pewpew.exe (Windows), and pewpew.mac (Mac) - Updated the README to add instructions for Mac and Windows Users on how to add an OS specific file and where * Updated the controller to remove hardcoded pewpew and pewpew.zip references - The controller will now use os specific versions of the pewpew executable: pewpew (Linux), pewpew.exe (Windows), and pewpew.mac (Mac) - Updated the README to add instructions for Mac and Windows Users on how to add an OS specific file(s) and where * Updated pewpew to the 0.5.13 release * Removed deprecated fs and log calls from util - Removed fs and logger calls from util so it can be used by client functions - Added default exports of common util functions and constants * Fixed issue with import from common bringing in fs into controller * Added fixes for filtering out pre-release versions * Fixed test that was only ignoring one pewpew executable * Added sleep on windows to avoid race condition after unzipping files * Fixed issue with integration tests - POST /pewpew tests need to run before the GET tests to make sure the data is there - After the deletes are completed we need to put back any versions we deleted * Added fix for compiling next.js on Windows - Symlinks do not work on Windows for compiling so we have to copy the file * Added fix for acceptance tests on Windows - Just like the integration tests, we must wait for the unzip to release the lock before we can access the files * Fixed warning during Next.js build on invalid config * Fixed security vulnerabilities * Added fixes missed from merge * Updated README to add Windows and Mac instructions to include scripting pewpew version * Test mac and windows executables (#209) * Added common constants for the different os executables to common - To differentiate Mac in S3, we'll use pewpew.mac as the file name. - These constants will be used by common, agent, and controller * Updated the agent to remove hardcoded pewpew references - The agent will now use os specific versions of the pewpew executable: pewpew (Linux), pewpew.exe (Windows), and pewpew.mac (Mac) - Updated the README to add instructions for Mac and Windows Users on how to add an OS specific file and where * Updated the controller to remove hardcoded pewpew and pewpew.zip references - The controller will now use os specific versions of the pewpew executable: pewpew (Linux), pewpew.exe (Windows), and pewpew.mac (Mac) - Updated the README to add instructions for Mac and Windows Users on how to add an OS specific file(s) and where * Updated pewpew to the 0.5.13 release * Removed deprecated fs and log calls from util - Removed fs and logger calls from util so it can be used by client functions - Added default exports of common util functions and constants * Fixed issue with import from common bringing in fs into controller * Added fixes for filtering out pre-release versions * Fixed test that was only ignoring one pewpew executable * Added sleep on windows to avoid race condition after unzipping files * Fixed issue with integration tests - POST /pewpew tests need to run before the GET tests to make sure the data is there - After the deletes are completed we need to put back any versions we deleted * Added fix for compiling next.js on Windows - Symlinks do not work on Windows for compiling so we have to copy the file * Added fix for acceptance tests on Windows - Just like the integration tests, we must wait for the unzip to release the lock before we can access the files * Fixed warning during Next.js build on invalid config * Fixed security vulnerabilities * Removed additional hard-coded latest and pewpew strings * Fixed the getTags call to get the latest tags (#211) * Fixed the getTags call to get the latest tags - Unit and Integration tests were not catching the bug, fixed the tests, then fixed the code * Cleaned up the logging of currentLatestVersion --------- Co-authored-by: Bryan <[email protected]>
- Loading branch information
1 parent
f605a80
commit 48d31d2
Showing
33 changed files
with
580 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
/coverage | ||
setaws.sh | ||
/.nyc_output/ | ||
/test/pewpew.* | ||
|
||
# production | ||
/build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.