@@ -15,11 +15,19 @@ jobs:
15
15
fail-fast : false
16
16
matrix :
17
17
operating-system : [ubuntu-latest,macos-latest,windows-latest]
18
- pyth-version : ['3.7','3.8','3.9','3.10','3.11','3.12']
18
+ pyth-version : ['3.6','3. 7','3.8','3.9','3.10','3.11','3.12']
19
19
include :
20
+ - operating-system : ubuntu-20.0.4 # Checking support for ubuntu os with python 3.6
21
+ pyth-version : ' 3.6'
22
+ - operating-system : macos-13 # Checking support for mac os with python 3.6
23
+ pyth-version : ' 3.6'
20
24
- operating-system : macos-13 # Checking support for mac os with python 3.7
21
25
pyth-version : ' 3.7'
22
26
exclude :
27
+ - operating-system : ubuntu-latest # python 3.7 is unavailable for mac os latest becuase 3.7 doesnt support arm 64
28
+ pyth-version : ' 3.6'
29
+ - operating-system : macos-latest # python 3.6 is unavailable for mac os latest becuase 3.6 doesnt support arm 64
30
+ pyth-version : ' 3.6'
23
31
- operating-system : macos-latest # python 3.7 is unavailable for mac os latest becuase 3.7 doesnt support arm 64
24
32
pyth-version : ' 3.7'
25
33
runs-on : ${{matrix.operating-system}}
@@ -48,20 +56,19 @@ jobs:
48
56
python -m pip install --upgrade pip
49
57
python -m venv ve
50
58
if [[ "$(uname -s)" == "Linux" ]]; then
51
- echo "In LINUX"
52
- source ve/bin/activate
59
+ echo "In LINUX"
60
+ source ve/bin/activate
53
61
elif [[ "$(uname -s)" == "Darwin" ]]; then
54
- echo "In MAC"
55
- source ve/bin/activate
62
+ echo "In MAC"
63
+ source ve/bin/activate
56
64
else
57
- echo "In Windows"
58
- source ve/Scripts/activate
59
- version=$(python3 --version 2>&1 | awk '{print $2}')
60
- if [[ $version == 3.7.* ]]
61
- then
62
- pip install cryptography==41.0.7
63
- fi
64
- # check if python version is 3.7 then "pip install cryptography==41.0.7"
65
+ echo "In Windows"
66
+ source ve/Scripts/activate
67
+ version=$(python3 --version 2>&1 | awk '{print $2}')
68
+ # if [[ $version == 3.7.* ]]; then
69
+ # pip install cryptography==41.0.7
70
+ # fi
71
+ # # check if python version is 3.7 then "pip install cryptography==41.0.7"
65
72
fi
66
73
echo $VIRTUAL_ENV
67
74
cd $CLIENT_FOLDER
@@ -79,14 +86,14 @@ jobs:
79
86
- name : Installing required python libraries and running the python programs to generate pdf report
80
87
run : |
81
88
if [[ "$(uname -s)" == "Linux" ]]; then
82
- source ve/bin/activate
83
- echo "In LINUX"
89
+ source ve/bin/activate
90
+ echo "In LINUX"
84
91
elif [[ "$(uname -s)" == "Darwin" ]]; then
85
- source ve/bin/activate
86
- echo "In MAC"
92
+ source ve/bin/activate
93
+ echo "In MAC"
87
94
else
88
- source ve/Scripts/activate
89
- echo "In Windows"
95
+ source ve/Scripts/activate
96
+ echo "In Windows"
90
97
fi
91
98
echo $VIRTUAL_ENV
92
99
echo "Before Running Report Generation"
0 commit comments