@@ -38,10 +38,28 @@ jobs:
38
38
- run : | # Just for deployment: create stdlib-fpm folder
39
39
python config/fypp_deployment.py --deploy_stdlib_fpm
40
40
41
+ - run : | # Just for deployment: create stdlib-fpm-xdp folder
42
+ python config/fypp_deployment.py --deploy_stdlib_fpm --with_xdp
43
+
44
+ - run : | # Just for deployment: create stdlib-fpm-qp folder
45
+ python config/fypp_deployment.py --deploy_stdlib_fpm --with_qp
46
+
47
+ - run : | # Just for deployment: create stdlib-fpm-xdp-qp folder
48
+ python config/fypp_deployment.py --deploy_stdlib_fpm --with_xdp --with_qp
49
+
41
50
- run : | # Just for deployment: create stdlib-fpm-ilp64 folder
42
51
python config/fypp_deployment.py --deploy_stdlib_fpm --with_ilp64
43
52
44
- - run : | # Use fpm gnu ci to check xdp and qp
53
+ - run : | # Just for deployment: create stdlib-fpm-ilp64-xdp folder
54
+ python config/fypp_deployment.py --deploy_stdlib_fpm --with_ilp64 --with_xdp
55
+
56
+ - run : | # Just for deployment: create stdlib-fpm-ilp64-qp folder
57
+ python config/fypp_deployment.py --deploy_stdlib_fpm --with_ilp64 --with_qp
58
+
59
+ - run : | # Just for deployment: create stdlib-fpm-ilp64-xdp-qp folder
60
+ python config/fypp_deployment.py --deploy_stdlib_fpm --with_ilp64 --with_xdp --with_qp
61
+
62
+ - run : | # Use fpm gnu ci to check xdp and qp
45
63
python config/fypp_deployment.py --with_xdp --with_qp
46
64
fpm test --profile release --flag '-DWITH_XDP -DWITH_QP'
47
65
@@ -53,10 +71,58 @@ jobs:
53
71
BRANCH : stdlib-fpm
54
72
FOLDER : stdlib-fpm
55
73
74
+ # Update and deploy the f90 files generated by github-ci to the `stdlib-fpm-xdp` branch.
75
+ - name : Deploy with xdp support 🚀
76
+ uses : JamesIves/github-pages-deploy-action@4.1.5
77
+ if : github.event_name != 'pull_request'
78
+ with :
79
+ BRANCH : stdlib-fpm-xdp
80
+ FOLDER : stdlib-fpm-xdp
81
+
82
+ # Update and deploy the f90 files generated by github-ci to the `stdlib-fpm-qp` branch.
83
+ - name : Deploy with qp support 🚀
84
+ uses : JamesIves/github-pages-deploy-action@4.1.5
85
+ if : github.event_name != 'pull_request'
86
+ with :
87
+ BRANCH : stdlib-fpm-qp
88
+ FOLDER : stdlib-fpm-qp
89
+
90
+ # Update and deploy the f90 files generated by github-ci to the `stdlib-fpm-xdp-qp` branch.
91
+ - name : Deploy with xdp and qp support 🚀
92
+ uses : JamesIves/github-pages-deploy-action@4.1.5
93
+ if : github.event_name != 'pull_request'
94
+ with :
95
+ BRANCH : stdlib-fpm-xdp-qp
96
+ FOLDER : stdlib-fpm-xdp-qp
97
+
56
98
# Update and deploy the f90 files generated by github-ci to the `stdlib-fpm-ilp64` branch.
57
99
- name : Deploy with 64-bit integer support 🚀
58
100
uses : JamesIves/github-pages-deploy-action@4.1.5
59
101
if : github.event_name != 'pull_request'
60
102
with :
61
103
BRANCH : stdlib-fpm-ilp64
62
104
FOLDER : stdlib-fpm-ilp64
105
+
106
+ # Update and deploy the f90 files generated by github-ci to the `stdlib-fpm-ilp64-xdp` branch.
107
+ - name : Deploy with 64-bit integer and xdp support 🚀
108
+ uses : JamesIves/github-pages-deploy-action@4.1.5
109
+ if : github.event_name != 'pull_request'
110
+ with :
111
+ BRANCH : stdlib-fpm-ilp64-xdp
112
+ FOLDER : stdlib-fpm-ilp64-xdp
113
+
114
+ # Update and deploy the f90 files generated by github-ci to the `stdlib-fpm-ilp64-qp` branch.
115
+ - name : Deploy with 64-bit integer and qp support 🚀
116
+ uses : JamesIves/github-pages-deploy-action@4.1.5
117
+ if : github.event_name != 'pull_request'
118
+ with :
119
+ BRANCH : stdlib-fpm-ilp64-qp
120
+ FOLDER : stdlib-fpm-ilp64-qp
121
+
122
+ # Update and deploy the f90 files generated by github-ci to the `stdlib-fpm-ilp64-xdp-qp` branch.
123
+ - name : Deploy with 64-bit integer, xdp, and qp support 🚀
124
+ uses : JamesIves/github-pages-deploy-action@4.1.5
125
+ if : github.event_name != 'pull_request'
126
+ with :
127
+ BRANCH : stdlib-fpm-ilp64-xdp-qp
128
+ FOLDER : stdlib-fpm-ilp64-xdp-qp
0 commit comments