-
Notifications
You must be signed in to change notification settings - Fork 22
928 lines (788 loc) · 28 KB
/
main.yml
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
name: 'main'
on:
push:
pull_request:
workflow_dispatch:
inputs:
Release_Date:
description: 'Release date of Raptor in format YYYY.MM'
default: ""
type: string
DEFAULT_DEVICES:
description: 'Name of production devices separated by comma'
default: ""
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-Ubuntu-R:
name: Ubuntu-Release
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: Ubuntu-Release
- name: Release Build
run: |
make install CPU_CORES=2
ls -l build
cp -rf yosys_verific_rs/yosys/install/share/yosys build/share
tar -czf build.tar.gz build ${{ env.PREFIX }}
- name: Unit C test
run: |
make test ADDITIONAL_CMAKE_OPTIONS=-DBUILD_YOSYS_PLUGINS=ON
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: Ubuntu-Release
path: build.tar.gz
retention-days: 1
build-Ubuntu-D:
# takes too much time so run it on os-fpga Raptor only
if: ${{ github.repository == 'os-fpga/Raptor'}}
name: Ubuntu-Debug
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: Ubuntu-Debug
- name: Debug Build
run: |
while true; do [ $(df / | awk 'NR==2 {print $5}' | sed 's/%//') -ge 99 ] && echo "Disk at 99%, killing make..." && pkill -f make && df -h / && exit 1; sleep 5; done &
make run-cmake-debug && rm -rf tests/Jira_Testcase/* zephyr-rapidsi-dev/*
df -h
make debug test/unittest-d CPU_CORES=2
cp -rf yosys_verific_rs/yosys/install/share/yosys dbuild/share
tar -czf build.tar.gz dbuild
- name: Print server resource
if: success() || failure()
run: |
df -h
du -sch *
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: Ubuntu-Debug
path: build.tar.gz
retention-days: 1
build-Ubuntu-P:
name: Ubuntu-Production
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices & configure device
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: Ubuntu-Production
- name: Production Build
run: |
make CPU_CORES=2 PRODUCTION_BUILD=1 PRODUCTION_DEVICES=`cat DEFAULT_DEVICES` STICK_RELEASE_VERSION=`cat input_release_date`
cp -rf yosys_verific_rs/yosys/install/share/yosys build/share
tar -czf build.tar.gz build projects
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: Ubuntu-Production
path: build.tar.gz
retention-days: 1
build-CentOS-P:
name: CentOS-Production
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices & configure device
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
minimum-dependencies: minimum
TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_DOCKER_IMAGE: 'yes'
RELEASE_DATE: ${{ inputs.Release_Date }}
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: CentOS-Production
- name: Checkout Subsystem
run: |
make run-cmake-release CPU_CORES=2
- name: Production Build
uses: addnab/docker-run-action@v3
with:
shell: bash
image: ghcr.io/${{ github.repository_owner }}/raptor:centos7latest
options: -v ${{ github.workspace }}:/work
run: |
source /opt/rh/devtoolset-11/enable
wget https://boostorg.jfrog.io/artifactory/main/release/1.74.0/source/boost_1_74_0.tar.gz #Licenescc_WAR
tar -xzf boost_1_* && ls -l #Licensecc_WAR
cd boost_1_* && ./bootstrap.sh --prefix=/usr && ./b2 install --prefix=/usr --with=all #Licensecc_WAR
cd /work && tar -czf boost_1_74_0_build.tar.gz /boost_1_*
cd /work && make clean
p_device=`cat DEFAULT_DEVICES` && echo $p_device
r_d=`cat input_release_date` && echo "$r_d"
make install CPU_CORES=2 $run_test PRODUCTION_BUILD=1 PREFIX=/opt/instl_dir PRODUCTION_DEVICES=$p_device STICK_RELEASE_VERSION=$r_d
[ $? != 0 ] && exit 1
echo "2nd compilation" && rm -rvf build/FOEDAG_rs
make install MONACO_EDITOR=1 CPU_CORES=2 $run_test PRODUCTION_BUILD=1 PREFIX=/opt/instl_dir PRODUCTION_DEVICES=$p_device STICK_RELEASE_VERSION=$r_d
[ $? != 0 ] && exit 1
tar -czf build.tar.gz projects \
./build/OPENLM_DIR/licensecc/extern/license-generator/src/license_generator/lccgen \
Raptor_Tools/Create_Raptor_Artifact Raptor_Tools/Install_Raptor_Artifact /opt/instl_dir
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: CentOS-Production
path: build.tar.gz
retention-days: 1
- name: Print server resource
if: success() || failure()
run: |
df -h
du -sch *
build-CentOS-R:
name: CentOS-Release
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
minimum-dependencies: minimum
TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_DOCKER_IMAGE: 'yes'
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: CentOS-Production
- name: Checkout Subsystem
run: |
make run-cmake-release CPU_CORES=2
- name: Build
uses: addnab/docker-run-action@v3
with:
shell: bash
image: ghcr.io/${{ github.repository_owner }}/raptor:centos7latest
options: -v ${{ github.workspace }}:/work
run: |
source /opt/rh/devtoolset-11/enable
cd work && make clean
make release CPU_CORES=2 $run_test MONACO_EDITOR=0
cp -rf yosys_verific_rs/yosys/install/share/yosys build/share
tar -czf build.tar.gz build
# disable as they are failing in yosys_verific_rs
# - name: Unit C test
# uses: addnab/docker-run-action@v3
# with:
# shell: bash
# image: ghcr.io/${{ github.repository_owner }}/raptor:centos7latest
# options: -v ${{ github.workspace }}:/work
# run: |
# source /opt/rh/devtoolset-11/enable
# cd work && make clean
# make release CPU_CORES=2 ADDITIONAL_CMAKE_OPTIONS=-DBUILD_YOSYS_PLUGINS=ON test MONACO_EDITOR=0
- name: Upload build
uses: actions/upload-artifact@v4
with:
name: CentOS-Release
path: build.tar.gz
retention-days: 1
test-ubuntu-R:
needs: build-Ubuntu-R
name: ${{ matrix.name }}-${{ matrix.test-type }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
- {build-type: Ubuntu-Release, extra-opts: "", test-type: test/int_batch, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
- {build-type: Ubuntu-Release, extra-opts: "", test-type: test/int_batch_gen2, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
- {build-type: Ubuntu-Release, extra-opts: "", test-type: test/int_solver, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
- {build-type: Ubuntu-Release, extra-opts: "clean", test-type: test/int_install, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
env:
Name: ${{ matrix.name }}
OS: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
minimum-dependencies: minimum
TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_DOCKER_IMAGE: 'yes'
- name: Download build
uses: actions/download-artifact@v4
with:
name: ${{ matrix.build-type }}
- name: Execute test
run: |
tar -xzf build.tar.gz && rm build.tar.gz && mv tmp/raptor_gui-install /tmp
run_test=`cat TEST_ON`
export CI=true
echo $run_test
make ${{ matrix.extra-opts}} ${{ matrix.test-type }} $run_test CPU_CORES=2
ls -l /tmp
test-ubuntu-D:
needs: build-Ubuntu-D
name: ${{ matrix.name }}-${{ matrix.test-type }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
- {build-type: Ubuntu-Debug, extra-opts: "", test-type: test/int_dgui, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
- {build-type: Ubuntu-Debug, extra-opts: "", test-type: test/int_dgui2, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
- {build-type: Ubuntu-Debug, extra-opts: "", test-type: test/int_valgrind, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
env:
Name: ${{ matrix.name }}
OS: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
minimum-dependencies: minimum
TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_DOCKER_IMAGE: 'yes'
- name: Download build
uses: actions/download-artifact@v4
with:
name: ${{ matrix.build-type }}
- name: Execute test
run: |
tar -xzf build.tar.gz && rm build.tar.gz
run_test=`cat TEST_ON`
export CI=true
echo $run_test
make ${{ matrix.test-type }} ${{ matrix.extra-opts }} $run_test CPU_CORES=2
test-ubuntu-P:
needs: build-Ubuntu-P
name: ${{ matrix.name }}-${{ matrix.test-type }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
- {build-type: Ubuntu-Production, extra-opts: "PRODUCTION_DEVICES=`cat DEFAULT_DEVICES`", test-type: test/int_production, name: "ubuntu", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
env:
Name: ${{ matrix.name }}
OS: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
minimum-dependencies: minimum
TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_DOCKER_IMAGE: 'yes'
- name: Download build
uses: actions/download-artifact@v4
with:
name: ${{ matrix.build-type }}
- name: Execute test
run: |
tar -xzf build.tar.gz && rm build.tar.gz
run_test=`cat TEST_ON`
export CI=true
echo $run_test
make ${{ matrix.test-type }} ${{ matrix.extra-opts }} $run_test CPU_CORES=2
test-centos-R:
needs: build-CentOS-R
name: ${{ matrix.name }}-${{ matrix.test-type }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
include:
- {build-type: CentOS-Release, extra-opts: "", test-type: test/int_batch, name: "centos7.9", os: ubuntu-22.04, dependencies: "bash .github/workflows/install_ubuntu_dependencies_build.sh"}
env:
Name: ${{ matrix.name }}
OS: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
minimum-dependencies: minimum
TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_DOCKER_IMAGE: 'yes'
- name: Download build
uses: actions/download-artifact@v4
with:
name: ${{ matrix.build-type }}
- name: Test
uses: addnab/docker-run-action@v3
with:
shell: bash
image: ghcr.io/${{ github.repository_owner }}/raptor:centos7latest
options: -v ${{ github.workspace }}:/work
run: |
source /opt/rh/devtoolset-11/enable
cd work && tar -xzf build.tar.gz && rm build.tar.gz
run_test=`cat TEST_ON`
export CI=true
make ${{ matrix.extra-opts}} ${{ matrix.test-type }} $run_test CPU_CORES=2
Deployment:
#if: ${{ github.ref == 'refs/heads/main' }}
needs: build-CentOS-P
name: deploy
runs-on: ubuntu-22.04
defaults:
run:
shell: bash
env:
FORK_REPO: ${{ secrets.FORK_STATUS }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
with:
DEVICES_NAME_FROM_INPUTS: ${{ inputs.DEFAULT_DEVICES }}
DEVICES_NAME_FROM_VARS: ${{ vars.PRODUCTION_DEVICES }}
minimum-dependencies: minimum
TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_DOCKER_IMAGE: 'yes'
- name: Download build
uses: actions/download-artifact@v4
with:
name: CentOS-Production
- name: Test
uses: addnab/docker-run-action@v3
with:
shell: bash
image: ghcr.io/${{ github.repository_owner }}/raptor:centos7latest
options: -v ${{ github.workspace }}:/work
run: |
source /opt/rh/devtoolset-11/enable
cd work && tar -xzf build.tar.gz && rm build.tar.gz && ls -la && ls -l build
run_test=`cat TEST_ON`
p_device=`cat DEFAULT_DEVICES`
echo $p_device && echo "$r_d"
cd /work/build && ln -vs ../opt/instl_dir/bin . && cd -
export LD_LIBRARY_PATH=/work/opt/instl_dir/lib64/raptor/lib:/usr/local/Qt6.2.4/lib:$LD_LIBRARY_PATH
source /work/opt/instl_dir/.raptorenv_lin64.sh
./build/bin/raptor --version
make test/int_production PRODUCTION_DEVICES=$p_device $run_test CPU_CORES=2
cd /work/Raptor_Tools/Create_Raptor_Artifact && bash create_release.sh -C -w /work/opt/instl_dir
ls -l /work/Raptor_Tools/upload/*
# The below section upload Raptor binaries to FTP so to enable it make sure provide your credentials.
- name: Check FTP server status
if: "${{ env.FORK_REPO == 'ON' }}"
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.FTP_IP }}
username: ${{ secrets.FTP_USER }}
key: ${{ secrets.FTP_KEY }}
port: ${{ secrets.FTP_PORT }}
script: whoami
- name: Deploy
if: "${{ env.FORK_REPO == 'ON' }}"
uses: appleboy/scp-action@master
with:
host: ${{ secrets.FTP_IP }}
username: ${{ secrets.FTP_USER }}
key: ${{ secrets.FTP_KEY }}
port: ${{ secrets.FTP_PORT }}
source: "./Raptor_Tools/upload/*"
target: "/home/rsbuilder/Raptor"
# Reference: https://github.com/eyllanesc/69108420/blob/main/.github/workflows/test.yml
msys2-gcc:
if: ${{ false }} # disable for now
runs-on: windows-2022
defaults:
run:
shell: msys2 {0}
steps:
- name: Cancel previous
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
# Fix Cmake version, 3.21.4 has a bug that prevents Tcl to build
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.21.3'
- name: Configure Git
run: git config --global core.autocrlf input
shell: bash
- name: Git pull
uses: actions/checkout@v4
- name: Install core dependencies
run: choco install -y swig --side-by-side --version=3.0.12
shell: powershell
- name: Setup Python Packages
run: |
pip3 install orderedmultidict
pip3 install psutil
- name: Setup Msys2
uses: msys2/setup-msys2@v2
with:
msystem: MSYS
update: true
install: gcc make cmake ninja python python-devel git diffutils autoconf
release: false
env:
MSYS2_PATH_TYPE: inherit
# Install Qt
- shell: msys2 {0}
run: |
pacman --noconfirm -S zlib
pacman --noconfirm -S zlib-devel
pacman --noconfirm -S mingw-w64-x86_64-qt6
# Static version pacman --noconfirm -Syu mingw-w64-x86_64-qt6-static
find . -name qt6-config.cmake
find . -name Qt6Config.cmake
find /mingw64 -name qt6-config.cmake
find /mingw64 -name Qt6Config.cmake
find C:/msys64/ -name qt6-config.cmake
find C:/msys64/ -name Qt6Config.cmake
- name: Configure shell environment variables
run: |
export SWIG_DIR=/c/ProgramData/chocolatey/lib/swig/tools/install/swigwin-3.0.12
export Qt6_Dir=/mingw64/lib/cmake/Qt6/
# Static version: export Qt6_Dir=/mingw64/qt5-static/lib/cmake/Qt6/
export Qt6_DIR=$Qt6_Dir
export CWD=`pwd`
echo "Qt6_DIR=$Qt6_DIR" >> $GITHUB_ENV
echo "SWIG_DIR=$SWIG_DIR" >> $GITHUB_ENV
echo 'CMAKE_GENERATOR=Ninja' >> $GITHUB_ENV
echo 'CC=gcc' >> $GITHUB_ENV
echo 'CXX=g++' >> $GITHUB_ENV
echo 'NO_TCMALLOC=On' >> $GITHUB_ENV
echo "PREFIX=$CWD/install" >> $GITHUB_ENV
echo "$Qt6_DIR" >> $GITHUB_PATH
echo "$SWIG_DIR" >> $GITHUB_PATH
- name: Show shell configuration
run: |
export PATH=$SWIG_DIR:$PATH
env
where git && git --version
where cmake && cmake --version
where make && make --version
where swig && swig -version
where python && python --version
where ninja && ninja --version
where tclsh && echo 'puts [info patchlevel];exit 0' | tclsh
where $CC && $CC --version
where $CXX && $CXX --version
- name: Build
run: |
export PATH=$SWIG_DIR:$PATH
export Qt6_Dir=/mingw64/lib/cmake/Qt6/
# export Qt6_Dir=/mingw64/qt6-static/lib/cmake/Qt6/
export Qt6_DIR=$Qt6_Dir
export PATH=$Qt6_DIR:$PATH
make lib-only
# There are Qt linkage issues, so build only the libs for now
# make VERBOSE=1 release
# make debug
# make install
- name: Test
run: |
export PATH=$SWIG_DIR:$PATH
export Qt6_Dir=/mingw64/lib/cmake/Qt5/
# export Qt6_Dir=/mingw64/qt5-static/lib/cmake/Qt5/
export Qt6_DIR=$Qt6_Dir
export PATH=$Qt6_DIR:$PATH
# There Qt are linkage issues, so build only the libs for now
# make test_install
# make test/unittest
# make regression
windows-msvc:
if: ${{ false }} # disable for now
runs-on: windows-2022
defaults:
run:
shell: cmd
steps:
- name: Cancel previous
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
# Fix Cmake version, 3.21.4 has a bug that prevents Tcl to build
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.21.3'
- name: Use cmake
run: cmake --version
- name: Install Core Dependencies
run: |
choco install -y make
choco install -y swig --side-by-side --version=3.0.12
- name: Setup Python
uses: actions/[email protected]
with:
python-version: 3.8
architecture: x64
- name: Setup Python Packages
run: |
pip3 install orderedmultidict
pip3 install psutil
- name: Install Qt
uses: jurplel/[email protected]
with:
version: '6.2.4'
modules: 'qtwebengine qtwebchannel qtpositioning'
- run: git config --global core.autocrlf input
shell: bash
- uses: actions/checkout@v4
- name: Build & Test
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set CMAKE_GENERATOR=Ninja
set CC=cl
set CXX=cl
set NO_TCMALLOC=On
set PREFIX=%GITHUB_WORKSPACE%\install
set CPU_CORES=%NUMBER_OF_PROCESSORS%
set MAKE_DIR=C:\make\bin
#set TCL_DIR=%PROGRAMFILES%\Git\mingw64\bin
set SWIG_DIR=%PROGRMDATA%\chocolatey\lib\swig\tools\install\swigwin-3.0.12
set PATH=%pythonLocation%;%SWIG_DIR%;%MAKE_DIR%;%PATH%
#set PATH=%pythonLocation%;%SWIG_DIR%;%MAKE_DIR%;%TCL_DIR%;%PATH%
set
where cmake && cmake --version
where make && make --version
where swig && swig -version
where python && python --version
where ninja && ninja --version
make release CPU_CORES=2 RAPTOR_PUB=1 ADDITIONAL_CMAKE_OPTIONS=-DBUILD_YOSYS_PLUGINS=ON
if %errorlevel% neq 0 exit /b %errorlevel%
make install RAPTOR_PUB=1
if %errorlevel% neq 0 exit /b %errorlevel%
make test/unittest
if %errorlevel% neq 0 exit /b %errorlevel%
make test_install
if %errorlevel% neq 0 exit /b %errorlevel%
make regression
if %errorlevel% neq 0 exit /b %errorlevel%
make test/batch
- name: Archive build artifacts
uses: actions/[email protected]
with:
name: raptor_gui-windows-msvc
path: ${{ github.workspace }}/install
- name: Archive regression artifacts
if: always()
uses: actions/[email protected]
with:
name: raptor_gui-windows-msvc-regression
path: |
${{ github.workspace }}/build/test/
${{ github.workspace }}/build/tests/
macos-gcc:
if: ${{ false }} # disable till EDA-802 is fixed
runs-on: macos-latest
steps:
- name: Cancel previous
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/[email protected]
with:
python-version: 3.8
- name: Setup Python Packages
run: |
pip3 install orderedmultidict
pip3 install psutil
- uses: actions/checkout@v4
- name: Install dependencies
uses: jurplel/[email protected]
with:
setup-python: false
version: '6.2.4'
modules: 'qtwebengine qtwebchannel qtpositioning'
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: macos-gcc
- name: Install other dependencies
run: |
bash .github/workflows/install_macos_dependencies_build.sh
- name: Configure shell
run: |
echo 'CC=gcc-9' >> $GITHUB_ENV
echo 'CXX=g++-9' >> $GITHUB_ENV
echo "/usr/local/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/ccache/libexec" >> $GITHUB_PATH
echo 'PREFIX=${GITHUB_WORKSPACE}/install' >> $GITHUB_ENV
echo "$PREFIX" >> $GITHUB_PATH
- name: Show shell configuration
run: |
env
which cmake && cmake --version
which make && make --version
which swig && swig -version
which python && python --version
which tclsh && echo 'puts [info patchlevel];exit 0' | tclsh
which $CC && $CC --version
which $CXX && $CXX --version
which bison && bison --version
which install && install --version
- name: Build
run: |
make release CPU_CORES=2
make install CPU_CORES=2
- name: Unit tests
run: |
make test_install_mac CPU_CORES=2
- name: Regression tests
run: |
make regression CPU_CORES=2
macos-clang:
if: ${{ false }} # disable till EDA-802 is fixed
runs-on: macos-latest
steps:
- name: Cancel previous
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/[email protected]
with:
python-version: 3.8
- name: Setup Python Packages
run: |
pip3 install orderedmultidict
pip3 install psutil
- name: Install dependencies
uses: jurplel/[email protected]
with:
setup-python: false
version: '6.2.4'
modules: 'qtwebengine qtwebchannel qtpositioning'
- uses: actions/checkout@v4
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: macos-clang
- name: Install other dependencies
run: |
bash .github/workflows/install_macos_dependencies_build.sh
- name: Configure shell
run: |
echo 'PREFIX=${GITHUB_WORKSPACE}/install' >> $GITHUB_ENV
echo "/usr/local/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/ccache/libexec" >> $GITHUB_PATH
echo "$PREFIX" >> $GITHUB_PATH
- name: Install XQuartz on macOS
run: brew install xquartz --cask
- name: Show shell configuration
run: |
env
which cmake && cmake --version
which make && make --version
which swig && swig -version
which python && python --version
which -a bison && bison --version
which tclsh && echo 'puts [info patchlevel];exit 0' | tclsh
- name: Build
run: |
make release CPU_CORES=2
make install CPU_CORES=2
- name: Unit tests
run: |
make test_install_mac CPU_CORES=2
make test/unittest
make XVFB="" debug test/gui_mac
- name: Regression tests
run: |
make regression CPU_CORES=2
CodeFormatting:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dependencies
run: |
sudo apt-get install clang-format
clang-format --version
- name: Run formatting style check
run: ./.github/bin/run-clang-format.sh
ClangTidy:
runs-on: ubuntu-22.04
if: ${{github.event_name == 'pull_request'}}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependenices
uses: ./.github/actions/
with:
minimum-dependencies: minimum
FREE_STORAGE: 'no'
- name: Use ccache
uses: hendrikmuhs/[email protected]
with:
key: clang-tidy-codegen
- name: Prepare source
run: |
make run-cmake-release CPU_CORES=2
ln -s build/compile_commands.json .
- name: Run clang tidy
run: |
./.github/bin/run-clang-tidy.sh