-
Notifications
You must be signed in to change notification settings - Fork 103
1405 lines (1371 loc) · 51.4 KB
/
indigo-ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: Indigo CI
env:
OS_NAME_MAPPING_JSON: '{"ubuntu-latest": "linux", "windows-latest": "windows", "macos-13": "macos"}'
on:
push:
branches:
- master
tags:
- 'indigo-*'
workflow_dispatch:
pull_request:
repository_dispatch:
jobs:
static_analysis:
runs-on: ubuntu-latest
container: epmlsop/indigo-tester:latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Check
run: |
python3 -m pip install -r api/python/requirements_dev.txt
.ci/static_analysis_check.sh
build_indigo_libs_x86_64:
strategy:
fail-fast: false
matrix:
os: [ macos-13, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
needs: static_analysis
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build Linux
if: ${{ startsWith(matrix.os, 'ubuntu') }}
uses: docker://epmlsop/buildpack-centos7:latest
with:
args: >
/bin/sh -c "
mkdir build &&
cd build &&
cmake .. -DBUILD_INDIGO=ON -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF &&
cmake --build . --config Release --target all -- -j $(nproc) &&
ctest --verbose
"
- name: Build macOS
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
mkdir build
cd build
cmake .. -DBUILD_INDIGO=ON -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF
cmake --build . --config Release --target all -- -j $(sysctl -n hw.logicalcpu)
ctest --verbose
- name: Build Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: |
mkdir build
cd build
cmake .. -DBUILD_INDIGO=ON -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF
cmake --build . --config Release --target ALL_BUILD
ctest --verbose -C Release
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: indigo-libs-${{ fromJSON(env.OS_NAME_MAPPING_JSON)[matrix.os] }}-x86_64
path: dist
build_indigo_libs_i386:
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
runs-on: ${{ matrix.os }}
needs: static_analysis
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: |
mkdir build
cd build
cmake .. -G "Visual Studio 17 2022" -A Win32 -DBUILD_INDIGO=ON -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DCMAKE_SYSTEM_PROCESSOR_LOWER=i386
cmake --build . --config Release --target ALL_BUILD
ctest --verbose -C Release
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: indigo-libs-${{ fromJSON(env.OS_NAME_MAPPING_JSON)[matrix.os] }}-i386
path: dist
build_indigo_libs_aarch64:
strategy:
fail-fast: false
matrix:
os: [ macos-13, ubuntu-latest ]
runs-on: ${{ matrix.os }}
needs: static_analysis
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build Linux
if: ${{ startsWith(matrix.os, 'ubuntu') }}
uses: docker://epmlsop/buildpack-arm64:latest
with:
args: >
/bin/sh -c "
mkdir build &&
cd build &&
cmake .. -DBUILD_INDIGO=ON -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DCMAKE_SYSTEM_PROCESSOR_LOWER=aarch64 &&
cmake --build . --config Release --target all -- -j $(nproc) &&
ctest --verbose -R dlopen
"
- name: Build macOS
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
mkdir build
cd build
cmake .. -DBUILD_INDIGO=ON -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DCMAKE_SYSTEM_PROCESSOR_LOWER=aarch64 -DCMAKE_OSX_ARCHITECTURES=arm64
cmake --build . --config Release --target all -- -j $(sysctl -n hw.logicalcpu)
# ctest --verbose # NOTE: We can't run tests until we have native ARM64 node
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: indigo-libs-${{ fromJSON(env.OS_NAME_MAPPING_JSON)[matrix.os] }}-aarch64
path: dist
build_indigo_wrappers:
strategy:
fail-fast: false
matrix:
wrapper: [ python, java, dotnet ]
runs-on: ubuntu-latest
needs: [ build_indigo_libs_x86_64, build_indigo_libs_aarch64, build_indigo_libs_i386 ]
container: epmlsop/indigo-tester:latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download Linux native libs x86_64
uses: actions/download-artifact@v3
with:
name: indigo-libs-linux-x86_64
path: dist/
- name: Download Linux native libs aarch64
uses: actions/download-artifact@v3
with:
name: indigo-libs-linux-aarch64
path: dist/
- name: Download Windows native libs x86_64
uses: actions/download-artifact@v3
with:
name: indigo-libs-windows-x86_64
path: dist/
- name: Download Windows native libs i386
uses: actions/download-artifact@v3
with:
name: indigo-libs-windows-i386
path: dist/
- name: Download macOS native libs x86_64
uses: actions/download-artifact@v3
with:
name: indigo-libs-macos-x86_64
path: dist/
- name: Download macOS native libs aarch64
uses: actions/download-artifact@v3
with:
name: indigo-libs-macos-aarch64
path: dist/
- name: Install Python test dependencies
run: python3 -m pip install -r api/python/requirements_dev.txt
- name: Build wrappers
run: |
mkdir build
cd build
cmake .. -DBUILD_INDIGO=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF
cmake --build . --config Release --target indigo-${{ matrix.wrapper }}
- name: Upload native shared libs
uses: actions/upload-artifact@v3
with:
name: indigo-native-shared-libs
path: |
dist/lib
- name: Upload Python wrappers
if: ${{ matrix.wrapper == 'python' }}
uses: actions/upload-artifact@v3
with:
name: indigo-python
path: |
dist/*.whl
- name: Upload Java wrappers
if: ${{ matrix.wrapper == 'java' }}
uses: actions/upload-artifact@v3
with:
name: indigo-java
path: dist/*.jar
- name: Upload .NET wrappers
if: ${{ matrix.wrapper == 'dotnet' }}
uses: actions/upload-artifact@v3
with:
name: indigo-dotnet
path: dist/*.nupkg
test_indigo_python_x86_64:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ macos-13, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-python
path: dist/
- name: Install Pillow
run: python3 -m pip install Pillow==9.5.0
- name: Install wrappers Linux
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: python3 -m pip install dist/*manylinux1_x86_64*.whl
- name: Install wrappers Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: Get-ChildItem dist -Filter *win_amd64*.whl -Recurse | % { python3 -m pip install $_.FullName }
- name: Install wrappers macOS
if: ${{ startsWith(matrix.os, 'macos') }}
run: python3 -m pip install dist/*macosx_10_7_intel*.whl
- name: Test
run: python3 -Wignore api/tests/integration/test.py -t 1 -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}-x86_64-python_test_report"
test_indigo_python_aarch64:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-python
path: dist/
- name: Test Linux
if: ${{ startsWith(matrix.os, 'ubuntu') }}
uses: uraimo/run-on-arch-action@v2.0.5
with:
arch: aarch64
distro: ubuntu20.04
githubToken: ${{ github.token }}
run: |
apt update
apt install -y --no-install-recommends python3 python3-pip
python3 -m pip install Pillow==9.5.0
python3 -m pip install dist/*manylinux2014_aarch64*.whl
python3 api/tests/integration/test.py -p basic/basic.py -t 1 -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}-aarch64-python_test_report"
test_indigo_python_i386:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-python
path: dist/
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
architecture: x86
- name: Install Pillow
run: python -m pip install Pillow==9.5.0
- name: Install wrappers Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: Get-ChildItem dist -Filter *win32*.whl -Recurse | % { python -m pip install $_.FullName }
- name: Test
run: python api/tests/integration/test.py -t 1 -p basic/basic.py -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}-i386-python_test_report"
test_indigo_java_x86_64:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ macos-13, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-java
path: dist/
- name: Install Jython
run: |
curl -L https://repo1.maven.org/maven2/org/python/jython-standalone/2.7.2/jython-standalone-2.7.2.jar -o jython.jar
- name: Test
env:
INDIGO_PATH: ${{ github.workspace }}/dist
run: |
java -Xss4m -jar jython.jar api/tests/integration/test.py -t 1 -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}-x86_64-java_test_report"
test_indigo_java_aarch64:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-java
path: dist/
- name: Test Linux
if: ${{ startsWith(matrix.os, 'ubuntu') }}
uses: uraimo/run-on-arch-action@v2.0.5
with:
arch: aarch64
distro: ubuntu20.04
githubToken: ${{ github.token }}
run: |
apt update
apt install -y curl default-jre
curl -L https://repo1.maven.org/maven2/org/python/jython-standalone/2.7.2/jython-standalone-2.7.2.jar -o jython.jar
export INDIGO_PATH=${{ github.workspace }}/dist
java -Xss4m -jar jython.jar api/tests/integration/test.py -p basic/basic.py -t 1 -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}-aarch64-java_test_report"
test_indigo_java_i386:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-java
path: dist/
- uses: actions/setup-java@v2
with:
distribution: 'adopt-hotspot'
java-version: '11'
architecture: x86
- name: Install Jython
run: |
curl -L https://repo1.maven.org/maven2/org/python/jython-standalone/2.7.2/jython-standalone-2.7.2.jar -o jython.jar
- name: Test
env:
INDIGO_PATH: ${{ github.workspace }}/dist
run: |
java -Xss4m -jar jython.jar api/tests/integration/test.py -t 1 -p basic/basic.py -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}-i386-java_test_report"
test_indigo_dotnet_x86_64:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ macos-13, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-dotnet
path: dist/
- name: Prepare Common
run: |
mkdir IronPython
mkdir tmp
cd IronPython
curl -OL https://github.com/IronLanguages/ironpython3/releases/download/v3.4.0/IronPython.3.4.0.zip
- name: Install dotnet 6
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/270b615f-5281-4c58-980f-d9f7a08db642/3e874492a9cb0d5b87195c596b46d609/dotnet-sdk-6.0.421-osx-x64.tar.gz
mkdir -p ${{ github.workspace }}/tmp/dotnet && tar zxf dotnet.tar.gz -C ${{ github.workspace }}/tmp/dotnet
- name: Prepare UNIX
if: ${{ !startsWith(matrix.os, 'windows') }}
run: |
cd IronPython
unzip IronPython.3.4.0.zip
cd ../tmp
unzip ../dist/Indigo.Net.*.nupkg
chmod -R a+rw .
- name: Prepare Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: |
cd IronPython
Expand-Archive IronPython.3.4.0.zip .
cd ../tmp
Expand-Archive ../dist/Indigo.Net.*.nupkg .
- name: Test Linux
if: ${{ startsWith(matrix.os, 'ubuntu') }}
env:
INDIGO_PATH: ${{ github.workspace }}/tmp/lib/netstandard2.0/Indigo.Net.dll
LD_LIBRARY_PATH: ${{ github.workspace }}/tmp/runtimes/linux-x64/native
run: |
dotnet IronPython/net6.0/ipy.dll api/tests/integration/test.py -t 1 -j junit_report.xml
- name: Test macOS
if: ${{ startsWith(matrix.os, 'macos') }}
env:
INDIGO_PATH: ${{ github.workspace }}/tmp/lib/netstandard2.0/Indigo.Net.dll
DOTNET_ROOT: ${{ github.workspace }}/tmp/dotnet
PATH: ${{ github.workspace }}/tmp/dotnet:$PATH
run: |
export DYLD_LIBRARY_PATH=${PWD}/tmp/runtimes/osx-x64/native
dotnet IronPython/net6.0/ipy.dll api/tests/integration/test.py -t 1 -j junit_report.xml
- name: Test Windows
if: ${{ startsWith(matrix.os, 'windows') }}
env:
INDIGO_PATH: ${{ github.workspace }}/tmp/lib/netstandard2.0/Indigo.Net.dll
PATH: ${{ env.PATH }};${{ github.workspace }}/tmp/runtimes/win-x64/native
run: ./IronPython/net462/ipy.exe api/tests/integration/test.py -t 1 -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}-x86_64-dotnet_test_report"
test_indigo_dotnet_i386:
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
runs-on: ${{ matrix.os }}
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-dotnet
path: dist/
- name: Prepare Common
run: |
mkdir IronPython
mkdir tmp
cd IronPython
curl -OL https://github.com/IronLanguages/ironpython3/releases/download/v3.4.0/IronPython.3.4.0.zip
- name: Prepare Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: |
cd IronPython
Expand-Archive IronPython.3.4.0.zip .
cd ../tmp
Expand-Archive ../dist/Indigo.Net.*.nupkg .
- name: Test Windows
if: ${{ matrix.os == 'windows' }}
env:
INDIGO_PATH: ${{ github.workspace }}/tmp/lib/netstandard2.0/Indigo.Net.dll
PATH: ${{ env.PATH }};${{ github.workspace }}/tmp/runtimes/win-x86/native
run: ./IronPython/net462/ipy32.exe api/tests/integration/test.py -t 1 -p basic/basic.py -j junit_report.xml
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v3
with:
report_paths: 'junit_report.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}
check_name: "${{ matrix.os }}_i386_dotnet_test_report"
test_bingo_elastic_python_linux_x86_64:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ '3.7', '3.10' ]
needs: build_indigo_wrappers
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
lfs: false
fetch-depth: 500
- name: Create folder for native libs
run: mkdir dist
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-python
path: dist/
- name: Install latest indigo version
run: pip install ${GITHUB_WORKSPACE}/dist/epam.indigo-*manylinux1_x86_64.whl
working-directory: bingo/bingo-elastic/python
- name: Install dev dependencies
run: pip install ".[dev]"
working-directory: bingo/bingo-elastic/python
- name: Setup elasticsearch
run: docker run -d -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e "indices.query.bool.max_clause_count=4096" docker.elastic.co/elasticsearch/elasticsearch:7.16.2
- name: Wait elastic is ready
run: sleep 30s
- name: Build wheel
working-directory: bingo/bingo-elastic/python
run: |
pip install ".[async]"
python setup.py bdist_wheel
cp dist/*.whl ${GITHUB_WORKSPACE}/dist/
- name: Run pylint
run: pylint --max-args 10 bingo_elastic
working-directory: bingo/bingo-elastic/python
- name: Run tests
run: pytest tests
working-directory: bingo/bingo-elastic/python
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: bingo-elastic-python
path: dist
test_bingo_elastic_java_linux_x86_64:
strategy:
fail-fast: false
matrix:
java-version: [ 1.8, 1.11 ]
runs-on: ubuntu-latest
needs: build_indigo_wrappers
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Download wrappers
uses: actions/download-artifact@v3
with:
name: indigo-java
path: dist/
- name: Install Indigo jars
run: find dist -name "*.jar" -not -name "*javadoc*" -not -name "*sources*" -exec mvn org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file -Dfile={} \;
- name: Build bingo-elastic
run: mvn -B --file pom.xml -Dmaven.repo.local=/home/runner/.m2/repository clean test
working-directory: bingo/bingo-elastic/java
build_indigo_windows_mingw_x86_64:
timeout-minutes: 60
runs-on: windows-latest
needs: static_analysis
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
install: mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-cmake git mingw-w64-x86_64-python mingw-w64-x86_64-python-pip mingw-w64-x86_64-python-wheel mingw-w64-x86_64-python-pillow
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build native libs
run: |
mkdir build
cd build
cmake .. -G "MinGW Makefiles" -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DPython3_ROOT_DIR=/mingw64
cmake --build . --config Release --target all -- -j $(nproc) --output-sync
- name: Test native libs
run: |
cd build
ctest --verbose
# - name: Install Python test dependencies
# run: python3 -m pip install -r api/python/requirements_dev.txt
# - name: Prepare integration tests
# run: |
# cd build
# cmake .. -G "MinGW Makefiles" -DBUILD_INDIGO_WRAPPERS=ON -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DPython3_ROOT_DIR=/mingw64
# cmake --build . --config Release --target indigo-python -- -j $(nproc) --output-sync
# - name: Run integration tests
# run: |
# python api/tests/integration/test.py -t 1 -j junit_report.xml -platform mingw
# - name: Publish Test Report
# if: always()
# uses: mikepenz/action-junit-report@v3
# with:
# report_paths: 'junit_report.xml'
# github_token: ${{ secrets.GITHUB_TOKEN }}
# check_name: "windows-mingw_python_test_report"
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: indigo-libs-windows-mingw-x86_64
path: dist
build_indigo_ketcher:
runs-on: ubuntu-latest
needs: static_analysis
container: emscripten/emsdk:3.1.60
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Update version
run: |
cd api/wasm/indigo-ketcher
ver=$(git describe --abbrev=0 --tags --match "indigo-*")-$(git rev-list $(git describe --abbrev=0 --tags --match "indigo-*").. --count)
ver=$(echo $ver | sed 's/indigo-//g' | sed 's/-0//g')
npm version --allow-same-version ${ver}
- name: Build, Test, Pack
run: |
mkdir build
cd build
emcmake cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release --target indigo-ketcher-package -- -j $(nproc)
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: indigo-ketcher
path: dist/indigo-ketcher*.tgz
build_indigo_ketcher_cjk:
runs-on: ubuntu-latest
needs: static_analysis
container: emscripten/emsdk:3.1.60
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Update version
run: |
cd api/wasm/indigo-ketcher
ver=$(git describe --abbrev=0 --tags --match "indigo-*")-$(git rev-list $(git describe --abbrev=0 --tags --match "indigo-*").. --count)
ver=$(echo $ver | sed 's/indigo-//g' | sed 's/-0//g')
npm version --allow-same-version ${ver}
- name: Build, Test, Pack
run: |
mkdir build
cd build
emcmake cmake .. -DCMAKE_BUILD_TYPE=Release -DRENDER_ENABLE_CJK=ON
cmake --build . --config Release --target indigo-ketcher-package -- -j $(nproc)
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: indigo-ketcher-cjk
path: dist/indigo-ketcher*.tgz
build_indigo_utils_x86_64:
strategy:
fail-fast: false
matrix:
os: [ macos-13, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
needs: static_analysis
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build utils Linux
if: ${{ startsWith(matrix.os, 'ubuntu') }}
uses: docker://epmlsop/buildpack-centos7:latest
with:
args: >
/bin/sh -c "
mkdir build &&
cd build &&
cmake .. -DBUILD_INDIGO=OFF -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DBUILD_INDIGO_UTILS=ON &&
cmake --build . --config Release --target all -- -j $(nproc) &&
ctest --verbose
"
- name: Build utils macOS
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
mkdir build
cd build
cmake .. -DBUILD_INDIGO=OFF -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DBUILD_INDIGO_UTILS=ON
cmake --build . --config Release --target all -- -j $(sysctl -n hw.logicalcpu)
ctest --verbose
- name: Build utils Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: |
mkdir build
cd build
cmake .. -DBUILD_INDIGO=OFF -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_BINGO=OFF -DBUILD_BINGO_ELASTIC=OFF -DBUILD_INDIGO_UTILS=ON
cmake --build . --config Release --target ALL_BUILD
ctest --verbose -C Release
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: indigo-utils-${{ fromJSON(env.OS_NAME_MAPPING_JSON)[matrix.os] }}-x86_64
path: dist/utils
build_bingo_oracle_linux_x86_64:
runs-on: ubuntu-latest
needs: static_analysis
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build bingo-oracle
uses: docker://epmlsop/buildpack-centos7:latest
with:
args: >
/bin/sh -c "
set -eux &&
mkdir build &&
cd build &&
cmake .. -DBUILD_BINGO_ORACLE=ON -DBUILD_BINGO_SQLSERVER=OFF -DBUILD_BINGO_POSTGRES=OFF -DBUILD_INDIGO=OFF -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO_ELASTIC=OFF &&
cmake --build . --config Release --target package-bingo-oracle -- -j $(nproc)
"
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: bingo-oracle-linux-x86_64
path: dist/bingo-oracle*.tgz
build_bingo_oracle_windows_mingw_x86_64:
runs-on: windows-latest
needs: static_analysis
defaults:
run:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
install: mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-cmake git
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build bingo-oracle
run: |
mkdir build
cd build
cmake .. -G "MinGW Makefiles" -DBUILD_BINGO_ORACLE=ON -DBUILD_BINGO_SQLSERVER=OFF -DBUILD_BINGO_POSTGRES=OFF -DBUILD_INDIGO=OFF -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO_ELASTIC=OFF
cmake --build . --config Release --target package-bingo-oracle -- -j $(nproc)
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: bingo-oracle-windows-mingw-x86_64
path: dist/bingo-oracle*.zip
build_bingo_oracle_windows_msvc_x86_64:
runs-on: windows-latest
needs: static_analysis
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Git fetch tags
run: |
git config --global --add safe.directory '*'
git fetch --tags -f
- name: Build bingo-oracle
run: |
mkdir build
cd build
cmake .. -DBUILD_BINGO_ORACLE=ON -DBUILD_BINGO_SQLSERVER=OFF -DBUILD_BINGO_POSTGRES=OFF -DBUILD_INDIGO=OFF -DBUILD_INDIGO_WRAPPERS=OFF -DBUILD_INDIGO_UTILS=OFF -DBUILD_BINGO_ELASTIC=OFF
cmake --build . --config Release --target package-bingo-oracle
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: bingo-oracle-windows-msvc-x86_64
path: dist/bingo-oracle*.zip
build_bingo_postgres_linux_x86_64:
strategy:
fail-fast: false
matrix:
postgres_major_version: [ 12, 13, 14, 15 ]
runs-on: ubuntu-latest
needs: static_analysis
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 500
- name: Set up Python