-
-
Notifications
You must be signed in to change notification settings - Fork 121
722 lines (716 loc) · 26 KB
/
IKVM.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
name: IKVM
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
release:
types:
- created
env:
NATIVE_SDK_VERSION: "20230701.1"
jobs:
build-openjdk:
name: Build OpenJDK
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3
with:
submodules: recursive
- name: Cache OpenJDK Build
uses: actions/cache@v3
with:
path: openjdk/build/linux-x86_64-normal-server-release
key: openjdk-build-linux-x86_64-normal-server-release--${{ runner.os }}--${{ hashFiles('openjdk/**', '!openjdk/build') }}-10
- name: Check OpenJDK Build Stamp
id: openjdk-build-stamp
uses: andstor/file-existence-action@v2
with:
files: openjdk/build/linux-x86_64-normal-server-release/stamp
- name: Fetch OpenJDK 7
if: steps.openjdk-build-stamp.outputs.files_exists != 'true'
run: |
mkdir -p openjdk/build &&
curl -o openjdk/build/openjdk-7u75-b13-linux-x64-18_dec_2014.tar.gz "https://download.java.net/openjdk/jdk7u75/ri/openjdk-7u75-b13-linux-x64-18_dec_2014.tar.gz" &&
tar xzvf openjdk/build/openjdk-7u75-b13-linux-x64-18_dec_2014.tar.gz -C openjdk/build
- name: Build OpenJDK
if: steps.openjdk-build-stamp.outputs.files_exists != 'true'
uses: docker://debian/eol:lenny
with:
args: >
/bin/bash -c "
echo 'deb http://archive.debian.org/debian/ lenny main' > /etc/apt/sources.list &&
apt-get update &&
apt-get install -y \
build-essential \
unzip \
zip \
curl \
gcc-4.3 \
g++-4.3 \
libx11-dev \
libxext-dev \
libxrender-dev \
libxtst-dev \
libxt-dev \
libxi-dev \
libcups2-dev \
libasound2-dev \
libfreetype6-dev \
libfontconfig1-dev &&
cd openjdk &&
JAVA_HOME=build/java-se-7u75-ri bash ./configure &&
make DISABLE_HOTSPOT_OS_VERSION_CHECK=ok images &&
touch build/linux-x86_64-normal-server-release/stamp"
- name: Update OpenJDK Attributes
run: |
sudo chown -R `id -u`:`id -g` linux-x86_64-normal-server-release && \
sudo chmod -R +rwx linux-x86_64-normal-server-release/images/j2sdk-image/bin
working-directory: openjdk/build
- name: Package OpenJDK
run: zip -r /tmp/openjdk-build-linux-x86_64-normal-server-release.zip linux-x86_64-normal-server-release/*
working-directory: openjdk/build
- name: Upload OpenJDK
uses: actions/upload-artifact@v3
with:
name: openjdk-build-linux-x86_64-normal-server-release
path: /tmp/openjdk-build-linux-x86_64-normal-server-release.zip
- name: Cache OpenJDK Test Harness Build
uses: actions/cache@v3
with:
path: jtreg/build
key: jtreg-build--${{ runner.os }}--${{ hashFiles('jtreg/**', 'openjdk/build/linux-x86_64-normal-server-release/images/j2sdk-image', '!jtreg/build') }}-6
- name: Check OpenJDK Test Harness Build Stamp
id: jtreg-build-stamp
uses: andstor/file-existence-action@v2
with:
files: jtreg/build/stamp
- name: Build OpenJDK Test Harness
if: steps.jtreg-build-stamp.outputs.files_exists != 'true'
run: bash make/build-all.sh `realpath ../openjdk/build/linux-x86_64-normal-server-release/images/j2sdk-image` && touch build/stamp
working-directory: jtreg
- name: Package OpenJDK Test Harness
run: zip -r /tmp/jtreg-build.zip build
working-directory: jtreg
- name: Upload OpenJDK Test Harness
uses: actions/upload-artifact@v3
with:
name: jtreg-build
path: /tmp/jtreg-build.zip
build-ikvm:
name: Build IKVM
needs:
- build-openjdk
timeout-minutes: 480
runs-on: windows-latest
steps:
- name: Set Paths (Windows)
shell: pwsh
run: |
$WORKPATH="C:\work"
mkdir $WORKPATH
mkdir $WORKPATH\temp
mkdir $WORKPATH\dotnet
mkdir $WORKPATH\nuget
mkdir $WORKPATH\nuget\packages
mkdir $WORKPATH\ikvm
Add-Content $env:GITHUB_ENV "`nWORKPATH=$WORKPATH"
Add-Content $env:GITHUB_ENV "`nTMP=$WORKPATH\temp`nTEMP=$WORKPATH\temp`nTMPDIR=$WORKPATH\temp"
Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=$WORKPATH\dotnet"
Add-Content $env:GITHUB_ENV "`nNUGET_PACKAGES=$WORKPATH\nuget\packages"
New-Item -Path "$env:GITHUB_WORKSPACE\work" -ItemType SymbolicLink -Value "$WORKPATH\ikvm"
- name: Checkout Source
uses: actions/checkout@v3
with:
path: work
fetch-depth: 0
submodules: recursive
- name: Setup .NET 3.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v3
with:
path: C:/Program Files/LLVM
key: llvm-16.0
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "16.0"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
- name: Install apple-codesign
uses: actions-rs/[email protected]
with:
crate: apple-codesign
version: latest
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: 5.x
- name: Execute GitVersion
uses: gittools/actions/gitversion/execute@v0
with:
targetPath: ${{ env.WORKPATH }}\ikvm
useConfigFile: true
configFilePath: ${{ env.WORKPATH }}\ikvm\GitVersion.yml
- name: Cache NuGet
uses: actions/cache@v3
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-2-${{ hashFiles('IKVM.sln', 'src\**\*.csproj', 'src\**\*.msbuildproj') }}
restore-keys: ${{ runner.os }}-nuget-2-
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1
- name: Download OpenJDK 8 Build
uses: actions/download-artifact@v3
with:
name: openjdk-build-linux-x86_64-normal-server-release
path: ${{ env.WORKPATH }}/temp
- name: Restore OpenJDK 8 Build
shell: pwsh
run: New-Item -Type Directory -Force ${{ env.WORKPATH }}/ikvm/openjdk/build; Expand-Archive ${{ env.WORKPATH }}/temp/openjdk-build-linux-x86_64-normal-server-release.zip -DestinationPath ${{ env.WORKPATH }}/ikvm/openjdk/build
- name: Download JTReg Build
uses: actions/download-artifact@v3
with:
name: jtreg-build
path: ${{ env.WORKPATH }}/temp
- name: Restore JTReg Build
shell: pwsh
run: New-Item -Type Directory -Force ${{ env.WORKPATH }}/ikvm/jtreg; Expand-Archive ${{ env.WORKPATH }}/temp/jtreg-build.zip -DestinationPath ${{ env.WORKPATH }}/ikvm/jtreg
- name: Download Native SDKs
uses: robinraju/[email protected]
with:
repository: ikvmnet/ikvm-native-sdk
tag: ${{ env.NATIVE_SDK_VERSION }}
fileName: "*.tar.gz"
out-file-path: ${{ env.WORKPATH }}/ikvm/ext/ikvm-native-sdk
extract: true
- name: Fix Symbolic Links
shell: pwsh
run: ri win -Recurse; .\Fix-SymbolicLinks.ps1
working-directory: ${{ env.WORKPATH }}/ikvm/ext/ikvm-native-sdk
- name: NuGet Restore
run: dotnet restore IKVM.sln
working-directory: ${{ env.WORKPATH }}/ikvm
- name: Build Artifacts
run: |
msbuild /m /bl `
/p:Configuration="Release" `
/p:Platform="Any CPU" `
/p:Version=${env:GitVersion_FullSemVer} `
/p:AssemblyVersion=${env:GitVersion_AssemblySemVer} `
/p:InformationalVersion=${env:GitVersion_InformationalVersion} `
/p:FileVersion=${env:GitVersion_AssemblySemFileVer} `
/p:PackageVersion=${env:GitVersion_FullSemVer} `
/p:RepositoryUrl="${env:GITHUB_SERVER_URL}/${env:GITHUB_REPOSITORY}.git" `
/p:PackageProjectUrl="${env:GITHUB_SERVER_URL}/${env:GITHUB_REPOSITORY}" `
/p:BuildInParallel=true `
/p:CreateHardLinksForAdditionalFilesIfPossible=true `
/p:CreateHardLinksForCopyAdditionalFilesIfPossible=true `
/p:CreateHardLinksForCopyFilesToOutputDirectoryIfPossible=true `
/p:CreateHardLinksForCopyLocalIfPossible=true `
/p:CreateHardLinksForPublishFilesIfPossible=true `
/p:ContinuousIntegrationBuild=true `
IKVM.dist.msbuildproj
working-directory: ${{ env.WORKPATH }}\ikvm
- name: Upload MSBuild Log
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: msbuild.binlog
path: ${{ env.WORKPATH }}\ikvm\msbuild.binlog
- name: Package NuGet Packages
run: tar czvf C:\nuget.tar.gz nuget
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload NuGet Packages
uses: actions/upload-artifact@v3
with:
name: nuget
path: C:\nuget.tar.gz
- name: Delete NuGet Packages
shell: pwsh
run: ri C:\nuget.tar.gz
- name: Package Binaries
run: tar czvf C:\bin.tar.gz bin
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Binaries
uses: actions/upload-artifact@v3
with:
name: bin
path: C:\bin.tar.gz
- name: Delete Binaries
shell: pwsh
run: ri C:\bin.tar.gz
- name: Package Tools
run: tar czvf C:\tools.tar.gz tools
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tools
uses: actions/upload-artifact@v3
with:
name: tools
path: C:\tools.tar.gz
- name: Delete Tools
shell: pwsh
run: ri C:\tools.tar.gz
- name: Package Image
run: tar czvf C:\image.tar.gz image
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Image
uses: actions/upload-artifact@v3
with:
name: image
path: C:\image.tar.gz
- name: Delete Image
shell: pwsh
run: ri C:\image.tar.gz
- name: Package Tests (IKVM.ByteCode.Tests)
run: tar czvf C:\tests--IKVM.ByteCode.Tests.tar.gz tests\IKVM.ByteCode.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.ByteCode.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.ByteCode.Tests
path: C:\tests--IKVM.ByteCode.Tests.tar.gz
- name: Delete Tests (IKVM.ByteCode.Tests)
shell: pwsh
run: ri C:\tests--IKVM.ByteCode.Tests.tar.gz
- name: Package Tests (IKVM.Tests)
run: tar czvf C:\tests--IKVM.Tests.tar.gz tests\IKVM.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.Tests
path: C:\tests--IKVM.Tests.tar.gz
- name: Delete Tests (IKVM.Tests)
shell: pwsh
run: ri C:\tests--IKVM.Tests.tar.gz
- name: Package Tests (IKVM.Java.Tests)
run: tar czvf C:\tests--IKVM.Java.Tests.tar.gz tests\IKVM.Java.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.Java.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.Java.Tests
path: C:\tests--IKVM.Java.Tests.tar.gz
- name: Delete Tests (IKVM.Java.Tests)
shell: pwsh
run: ri C:\tests--IKVM.Java.Tests.tar.gz
- name: Package Tests (IKVM.Tools.Tests)
run: tar czvf C:\tests--IKVM.Tools.Tests.tar.gz tests\IKVM.Tools.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.Tools.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.Tools.Tests
path: C:\tests--IKVM.Tools.Tests.tar.gz
- name: Delete Tests (IKVM.Tools.Tests)
shell: pwsh
run: ri C:\tests--IKVM.Tools.Tests.tar.gz
- name: Package Tests (IKVM.Tools.Exporter.Tests)
run: tar czvf C:\tests--IKVM.Tools.Exporter.Tests.tar.gz tests\IKVM.Tools.Exporter.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.Tools.Exporter.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.Tools.Exporter.Tests
path: C:\tests--IKVM.Tools.Exporter.Tests.tar.gz
- name: Delete Tests (IKVM.Tools.Exporter.Tests)
shell: pwsh
run: ri C:\tests--IKVM.Tools.Exporter.Tests.tar.gz
- name: Package Tests (IKVM.Tools.Importer.Tests)
run: tar czvf C:\tests--IKVM.Tools.Importer.Tests.tar.gz tests\IKVM.Tools.Importer.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.Tools.Importer.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.Tools.Importer.Tests
path: C:\tests--IKVM.Tools.Importer.Tests.tar.gz
- name: Delete Tests (IKVM.Tools.Importer.Tests)
shell: pwsh
run: ri C:\tests--IKVM.Tools.Importer.Tests.tar.gz
- name: Package Tests (IKVM.MSBuild.Tasks.Tests)
run: tar czvf C:\tests--IKVM.MSBuild.Tasks.Tests.tar.gz tests\IKVM.MSBuild.Tasks.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.MSBuild.Tasks.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.MSBuild.Tasks.Tests
path: C:\tests--IKVM.MSBuild.Tasks.Tests.tar.gz
- name: Delete Tests (IKVM.MSBuild.Tasks.Tests)
shell: pwsh
run: ri C:\tests--IKVM.MSBuild.Tasks.Tests.tar.gz
- name: Package Tests (IKVM.MSBuild.Tests)
run: tar czvf C:\tests--IKVM.MSBuild.Tests.tar.gz tests\IKVM.MSBuild.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.MSBuild.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.MSBuild.Tests
path: C:\tests--IKVM.MSBuild.Tests.tar.gz
- name: Delete Tests (IKVM.MSBuild.Tests)
shell: pwsh
run: ri C:\tests--IKVM.MSBuild.Tests.tar.gz
- name: Package Tests (IKVM.NET.Sdk.Tests)
run: tar czvf C:\tests--IKVM.NET.Sdk.Tests.tar.gz tests\IKVM.NET.Sdk.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.NET.Sdk.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.NET.Sdk.Tests
path: C:\tests--IKVM.NET.Sdk.Tests.tar.gz
- name: Delete Tests (IKVM.NET.Sdk.Tests)
shell: pwsh
run: ri C:\tests--IKVM.NET.Sdk.Tests.tar.gz
- name: Package Tests (IKVM.JTReg.TestAdapter.Tests)
run: tar czvf C:\tests--IKVM.JTReg.TestAdapter.Tests.tar.gz tests\IKVM.JTReg.TestAdapter.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.JTReg.TestAdapter.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.JTReg.TestAdapter.Tests
path: C:\tests--IKVM.JTReg.TestAdapter.Tests.tar.gz
- name: Delete Tests (IKVM.JTReg.TestAdapter.Tests)
shell: pwsh
run: ri C:\tests--IKVM.JTReg.TestAdapter.Tests.tar.gz
- name: Package Tests (IKVM.OpenJDK.Tests)
run: tar czvf C:\tests--IKVM.OpenJDK.Tests.tar.gz tests\IKVM.OpenJDK.Tests
working-directory: ${{ env.WORKPATH }}\ikvm\dist
- name: Upload Tests (IKVM.OpenJDK.Tests)
uses: actions/upload-artifact@v3
with:
name: tests--IKVM.OpenJDK.Tests
path: C:\tests--IKVM.OpenJDK.Tests.tar.gz
- name: Delete Tests (IKVM.OpenJDK.Tests)
shell: pwsh
run: ri C:\tests--IKVM.OpenJDK.Tests.tar.gz
test:
strategy:
matrix:
run:
- IKVM.ByteCode.Tests
- IKVM.Tests
- IKVM.Java.Tests
- IKVM.Tools.Exporter.Tests
- IKVM.Tools.Importer.Tests
- IKVM.Tools.Tests
- IKVM.JTReg.TestAdapter.Tests
- IKVM.OpenJDK.Tests?TestPartition=0
- IKVM.OpenJDK.Tests?TestPartition=1
- IKVM.OpenJDK.Tests?TestPartition=2
- IKVM.OpenJDK.Tests?TestPartition=3
- IKVM.OpenJDK.Tests?TestPartition=4
- IKVM.OpenJDK.Tests?TestPartition=5
- IKVM.OpenJDK.Tests?TestPartition=6
- IKVM.OpenJDK.Tests?TestPartition=7
tfm:
- net461
- net6.0
sys:
- windows
- linux
- osx-x64
exclude:
- tfm: net461
sys: linux
- tfm: net461
sys: osx-x64
- run: IKVM.Tools.Exporter.Tests
tfm: net461
- run: IKVM.Tools.Importer.Tests
tfm: net461
- run: IKVM.Tools.Tests
tfm: net461
include:
- run: IKVM.ByteCode.Tests
tfm: netcoreapp3.1
sys: windows
- run: IKVM.ByteCode.Tests
tfm: netcoreapp3.1
sys: linux
- run: IKVM.Java.Tests
tfm: netcoreapp3.1
sys: windows
- run: IKVM.Java.Tests
tfm: netcoreapp3.1
sys: linux
- run: IKVM.JTReg.TestAdapter.Tests
tfm: net7.0
sys: windows
- run: IKVM.JTReg.TestAdapter.Tests
tfm: net7.0
sys: linux
- run: IKVM.MSBuild.Tasks.Tests
tfm: net472
sys: windows
- run: IKVM.MSBuild.Tasks.Tests
tfm: net7.0
sys: windows
- run: IKVM.MSBuild.Tasks.Tests
tfm: net7.0
sys: osx-x64
- run: IKVM.MSBuild.Tests
tfm: net7.0
sys: windows
- run: IKVM.MSBuild.Tests
tfm: net7.0
sys: linux
- run: IKVM.MSBuild.Tests
tfm: net7.0
sys: osx-x64
- run: IKVM.NET.Sdk.Tests
tfm: net7.0
sys: windows
- run: IKVM.NET.Sdk.Tests
tfm: net7.0
sys: linux
- run: IKVM.NET.Sdk.Tests
tfm: net7.0
sys: osx-x64
- run: IKVM.Tests
tfm: net7.0
sys: windows
- run: IKVM.Tests
tfm: net7.0
sys: linux
- run: IKVM.Tests
tfm: net7.0
sys: osx-x64
- run: IKVM.Tools.Exporter.Tests
tfm: net472
sys: windows
- run: IKVM.Tools.Importer.Tests
tfm: net472
sys: windows
- run: IKVM.Tools.Tests
tfm: net472
sys: windows
- run: IKVM.Tools.Tests
tfm: net7.0
sys: windows
- run: IKVM.Tools.Tests
tfm: net7.0
sys: linux
- run: IKVM.Tools.Tests
tfm: net7.0
sys: osx-x64
name: Test (${{ matrix.run }}:${{ matrix.tfm }}:${{ matrix.sys }})
needs:
- build-ikvm
timeout-minutes: 240
runs-on: ${{ fromJSON('{"windows":["windows-2022"],"linux":["ubuntu-22.04"],"osx-x64":["macos-12"]}')[matrix.sys] }}
steps:
- name: Free Disk Space (Linux)
if: runner.os == 'Linux'
uses: jlumbroso/free-disk-space@main
with:
dotnet: false
swap-storage: false
large-packages: false
- name: Set Paths (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
$dir="C:\w"
mkdir $dir
mkdir $dir\temp
mkdir $dir\dotnet
mkdir $dir\ikvm
Add-Content $env:GITHUB_ENV "`nIKVMPATH=$dir\ikvm"
Add-Content $env:GITHUB_ENV "`nTMP=$dir\temp`nTEMP=$dir\temp`nTMPDIR=$dir\temp"
Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=$dir\dotnet"
- name: Set Paths (Linux/OS X)
if: runner.os == 'Linux' || runner.os == 'macOS'
shell: pwsh
run: |
$dir="${{ runner.temp }}/w"
mkdir $dir
mkdir $dir/temp
mkdir $dir/dotnet
mkdir $dir/ikvm
Add-Content $env:GITHUB_ENV "`nIKVMPATH=$dir/ikvm"
Add-Content $env:GITHUB_ENV "`nTMP=$dir/temp`nTEMP=$dir/temp`nTMPDIR=$dir/temp"
Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=$dir/dotnet"
- name: Setup .NET 3.1
if: matrix.sys != 'osx-arm64'
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Setup WSL
if: matrix.sys == 'windows'
uses: Vampire/setup-wsl@v2
- name: Get Test Name
uses: actions/github-script@v6
id: test-name
env:
MATRIX_RUN: '${{ matrix.run }}'
with:
script: |
const run = process.env.MATRIX_RUN;
const tst = run.split('?')[0];
return tst;
result-encoding: string
- name: Download Tests
uses: actions/download-artifact@v3
with:
name: tests--${{ steps.test-name.outputs.result }}
path: ${{ env.IKVMPATH }}
- name: Restore Tests
run: tar xzvf tests--${{ steps.test-name.outputs.result }}.tar.gz
working-directory: ${{ env.IKVMPATH }}
- name: Delete Tests
shell: pwsh
run: ri tests--${{ steps.test-name.outputs.result }}.tar.gz
working-directory: ${{ env.IKVMPATH }}
- name: Execute Tests
timeout-minutes: 120
shell: pwsh
run: |
# assign powershell variables
$run = "${{ matrix.run }}"
$tfm = "${{ matrix.tfm }}"
$sys = "${{ matrix.sys }}"
# suite name can contain filter expression after ?
$split = $run.IndexOf("?")
if ($split -gt -1) {
$tst = $run.Substring(0, $split)
$qry = $run.Substring($split + 1)
} else {
$tst = $run
}
# scan for test assemblies
$tests = $(gci .\tests\$tst\$tfm -Recurse -Filter '*.Tests.dll')
# if a query was specified, add to test command
if ($tests) {
if ($qry -ne "" -and $qry -ne $null) {
Add-Content $env:GITHUB_ENV "`nRET=TestResults--$tst-$qry--$tfm--$sys"
dotnet test -f $tfm --blame -v 2 --results-directory "TestResults" --logger:"console;verbosity=detailed" --logger:trx --collect "Code Coverage" --filter "$qry" $tests
} else {
Add-Content $env:GITHUB_ENV "`nRET=TestResults--$tst--$tfm--$sys"
dotnet test -f $tfm --blame -v 2 --results-directory "TestResults" --logger:"console;verbosity=detailed" --logger:trx --collect "Code Coverage" $tests
}
}
working-directory: ${{ env.IKVMPATH }}
- name: Archive Test Results
if: always() && startsWith(env.RET, 'TestResults--')
run: tar czvf ${{ env.TMPDIR }}/TestResults.tar.gz TestResults
working-directory: ${{ env.IKVMPATH }}
- name: Upload Test Results
if: always() && startsWith(env.RET, 'TestResults--')
uses: actions/upload-artifact@v3
with:
name: ${{ env.RET }}
path: ${{ env.TMPDIR }}/TestResults.tar.gz
release:
name: Release
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
shell: pwsh
run: Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=${{ runner.temp }}/dotnet"
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: 5.x
- name: Execute GitVersion
id: GitVersion
uses: gittools/actions/gitversion/execute@v0
with:
useConfigFile: true
- name: Download NuGet Packages
uses: actions/download-artifact@v3
with:
name: nuget
path: dist
- name: Restore NuGet Packages
run: tar xzvf nuget.tar.gz
working-directory: dist
- name: Download Binaries
uses: actions/download-artifact@v3
with:
name: bin
path: dist
- name: Restore Binaries
run: tar xzvf bin.tar.gz
working-directory: dist
- name: Compress Binaries
shell: pwsh
run: cd dist && gi bin/* | %{ $tfm = $_.Name; Push-Location "bin/$tfm"; zip -r "../IKVM-${env:GitVersion_SemVer}-bin-$tfm.zip" .; tar czvf "../IKVM-${env:GitVersion_SemVer}-bin-$tfm.tar.gz" .; Pop-Location }
- name: Download Tools
uses: actions/download-artifact@v3
with:
name: tools
path: dist
- name: Restore Tools
run: tar xzvf tools.tar.gz
working-directory: dist
- name: Compress Tools
shell: pwsh
run: cd dist && gi tools/*/* | %{ $tfm = $_.Parent.Name; $rid = $_.Name; Push-Location "tools/$tfm/$rid"; zip -r "../../IKVM-${env:GitVersion_SemVer}-tools-$tfm-$rid.zip" .; tar czvf "../../IKVM-${env:GitVersion_SemVer}-tools-$tfm-$rid.tar.gz" .; Pop-Location }
- name: Download Image
uses: actions/download-artifact@v3
with:
name: image
path: dist
- name: Restore Image
run: tar xzvf image.tar.gz
working-directory: dist
- name: Compress Image
shell: pwsh
run: cd dist && gi image/*/* | %{ $tfm = $_.Parent.Name; $rid = $_.Name; Push-Location "image/$tfm/$rid"; zip -r "../../IKVM-${env:GitVersion_SemVer}-image-$tfm-$rid.zip" .; tar czvf "../../IKVM-${env:GitVersion_SemVer}-image-$tfm-$rid.tar.gz" .; Pop-Location }
- name: Create Release
if: github.ref_type == 'tag'
uses: ncipollo/[email protected]
with:
tag: ${{ github.ref_name }}
allowUpdates: true
artifacts: dist/nuget/*.nupkg,dist/bin/*.zip,dist/bin/*.tar.gz,dist/image/*.zip,dist/image/*.tar.gz,dist/tools/*.zip,dist/tools/*.tar.gz
draft: false
token: ${{ secrets.GITHUB_TOKEN }}
- name: Push NuGet (GitHub)
if: github.event_name != 'pull_request'
shell: pwsh
run: dotnet nuget push dist/nuget/*.nupkg --source $env:GITHUB_REPOS --api-key $env:GITHUB_TOKEN --skip-duplicate --no-symbols
env:
GITHUB_REPOS: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push NuGet
if: github.ref_type == 'tag'
shell: pwsh
run: dotnet nuget push dist/nuget/*.nupkg --source $env:NUGET_REPOS --api-key $env:NUGET_TOKEN --skip-duplicate
env:
NUGET_REPOS: https://api.nuget.org/v3/index.json
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}