This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| :description: Python Class To Calculate Options IV and Greeks | |
| :license: MIT. | |
| :author: Shabbir Hasan | |
| :created: On Thursday December 22, 2022 23:43:57 GMT+05:30 | |
| """ | |
| __author__ = "Shabbir Hasan aka DrJuneMoone" | |
| __webpage__ = "https://github.com/ShabbirHasan1" | |
| __license__ = "MIT" |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| :description: Python Class To Calculate Options IV and Greeks | |
| :license: MIT. | |
| :author: Shabbir Hasan | |
| :created: On Thursday December 22, 2022 23:43:57 GMT+05:30 | |
| """ | |
| __author__ = "Shabbir Hasan aka DrJuneMoone" | |
| __webpage__ = "https://github.com/ShabbirHasan1" | |
| __license__ = "MIT" |
This file contains hidden or 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
| #! /bin/bash -e | |
| # this file only calls underlying scripts which will build latest image | |
| # and push images with master tag | |
| declare -a IMAGES=("u16" "microbase" "genexec" "u16pyt" "u16cpp") | |
| for image in "${IMAGES[@]}" | |
| do | |
| echo "building $image" |
This file contains hidden or 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
| sudo apt-get update | |
| sudo apt-get install -y jq expect kvm | |
| sudo apt-get update | |
| sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| # Add arm64 testing |