-
-
Notifications
You must be signed in to change notification settings - Fork 121
758 lines (742 loc) · 25.1 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
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
name: IKVM
on:
workflow_dispatch:
inputs:
full_test:
required: false
type: boolean
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
release:
types:
- created
env:
NATIVE_SDK_VERSION: "20240614.1"
jobs:
build-jtreg:
name: Build OpenJDK Test Harness
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache OpenJDK Test Harness Build
uses: actions/cache@v4
with:
path: ext/jtreg/build
key: jtreg-build--${{ runner.os }}--${{ hashFiles('ext/jtreg/**') }}-8
- name: Check OpenJDK Test Harness Build Stamp
id: jtreg-build-stamp
uses: andstor/file-existence-action@v3
with:
files: ext/jtreg/build/stamp
- name: Install Java
run: |
sudo apt-get update && \
sudo apt-get install -y \
openjdk-8-jdk-headless && \
echo "JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64" >> $GITHUB_ENV
- name: Build OpenJDK Test Harness
if: steps.jtreg-build-stamp.outputs.files_exists != 'true'
run: WGET_OPTS='-U Mozilla/5.0' bash make/build-all.sh $JAVA_HOME && touch build/stamp
working-directory: ext/jtreg
- name: Package OpenJDK Test Harness
run: zip -r /tmp/jtreg-build.zip build
working-directory: ext/jtreg
- name: Upload OpenJDK Test Harness
uses: actions/upload-artifact@v4
with:
name: jtreg-build
path: /tmp/jtreg-build.zip
build-ikvm:
name: Build IKVM
needs:
- build-jtreg
timeout-minutes: 720
runs-on: ubuntu-24.04
env:
DOTNET_INSTALL_DIR: ${{ github.workspace }}/.dotnet
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
- name: Uninstall Packages
run: |
sudo apt-get remove --purge -y \
temurin-\* \
mono-complete \
unixodbc-dev \
nginx \
php\* \
postgresql\* \
python3-dev python3-pip python3-venv \
ruby-full \
firefox \
apache2 \
ant && \
sudo apt-get --purge autoremove -y && \
sudo apt-get clean && \
sudo rm -rf /usr/share/swift
- name: Free Disk Space (Linux)
if: runner.os == 'Linux'
uses: jlumbroso/free-disk-space@main
with:
swap-storage: false
- name: Checkout Source
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install Mono
run: |
sudo apt-get update && \
sudo apt-get install -y \
mono-runtime \
mono-devel
- name: Install Java
run: |
sudo apt-get update && \
sudo apt-get install -y \
openjdk-8-jdk-headless && \
echo "JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64" >> $GITHUB_ENV
- name: Install LLVM and Clang
run: |
sudo apt-get update && \
sudo apt-get install -y clang-17 llvm-17 && \
echo "PATH=/usr/lib/llvm-17/bin:$PATH" >> $GITHUB_ENV
- name: Install apple-codesign
uses: baptiste0928/cargo-install@v3
with:
crate: apple-codesign
version: latest
locked: false
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v1
with:
versionSpec: 5.x
- name: Execute GitVersion
uses: gittools/actions/gitversion/execute@v1
with:
useConfigFile: true
configFilePath: GitVersion.yml
- name: Download JTReg Build
uses: actions/download-artifact@v4
with:
name: jtreg-build
path: /tmp
- name: Restore JTReg Build
run: mkdir -p ext/jtreg && cd ext/jtreg && unzip /tmp/jtreg-build.zip && rm /tmp/jtreg-build.zip
- 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: ext/ikvm-native-sdk
extract: true
- name: Add NuGet Source (GitHub)
shell: pwsh
run: dotnet nuget add source --username USERNAME --password $env:GITHUB_TOKEN --store-password-in-clear-text --name ikvm $env:GITHUB_REPOS
env:
GITHUB_REPOS: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: NuGet Restore
run: dotnet restore IKVM.sln
- name: Build Artifacts
run: |
dotnet msbuild /m /bl \
/p:Configuration="Release" \
/p:Platform="Any CPU" \
/p:PreReleaseLabel=${GitVersion_PreReleaseLabel} \
/p:PreReleaseNumber=${GitVersion_WeightedPreReleaseNumber} \
/p:Version=${GitVersion_FullSemVer} \
/p:AssemblyVersion=${GitVersion_AssemblySemVer} \
/p:InformationalVersion=${GitVersion_InformationalVersion} \
/p:FileVersion=${GitVersion_AssemblySemFileVer} \
/p:PackageVersion=${GitVersion_FullSemVer} \
/p:RepositoryUrl="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git" \
/p:PackageProjectUrl="${GITHUB_SERVER_URL}/${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
- name: Upload MSBuild Log
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: msbuild.binlog
path: msbuild.binlog
- name: Package NuGet Packages
run: tar czvf /tmp/nuget.tar.gz nuget
working-directory: dist
- name: Upload NuGet Packages
uses: actions/upload-artifact@v4
with:
name: nuget
path: /tmp/nuget.tar.gz
- name: Delete NuGet Packages
run: rm /tmp/nuget.tar.gz
- name: Package Tools
run: tar czvf /tmp/tools.tar.gz tools
working-directory: dist
- name: Upload Tools
uses: actions/upload-artifact@v4
with:
name: tools
path: /tmp/tools.tar.gz
- name: Delete Tools
run: rm /tmp/tools.tar.gz
- name: Package JRE
run: tar czvf /tmp/jre.tar.gz jre
working-directory: dist
- name: Upload JRE
uses: actions/upload-artifact@v4
with:
name: jre
path: /tmp/jre.tar.gz
- name: Delete JRE
run: rm /tmp/jre.tar.gz
- name: Package JDK
run: tar czvf /tmp/jdk.tar.gz jdk
working-directory: dist
- name: Upload JDK
uses: actions/upload-artifact@v4
with:
name: jdk
path: /tmp/jdk.tar.gz
- name: Delete JDK
run: rm /tmp/jdk.tar.gz
- name: Package Tests (IKVM.Reflection.Tests)
run: tar czvf /tmp/tests--IKVM.Reflection.Tests.tar.gz tests/IKVM.Reflection.Tests
working-directory: dist
- name: Upload Tests (IKVM.Reflection.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.Reflection.Tests
path: /tmp/tests--IKVM.Reflection.Tests.tar.gz
- name: Delete Tests (IKVM.Reflection.Tests)
run: rm /tmp/tests--IKVM.Reflection.Tests.tar.gz
- name: Package Tests (IKVM.CoreLib.Tests)
run: tar czvf /tmp/tests--IKVM.CoreLib.Tests.tar.gz tests/IKVM.CoreLib.Tests
working-directory: dist
- name: Upload Tests (IKVM.CoreLib.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.CoreLib.Tests
path: /tmp/tests--IKVM.CoreLib.Tests.tar.gz
- name: Delete Tests (IKVM.CoreLib.Tests)
run: rm /tmp/tests--IKVM.CoreLib.Tests.tar.gz
- name: Package Tests (IKVM.Tests)
run: tar czvf /tmp/tests--IKVM.Tests.tar.gz tests/IKVM.Tests
working-directory: dist
- name: Upload Tests (IKVM.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.Tests
path: /tmp/tests--IKVM.Tests.tar.gz
- name: Delete Tests (IKVM.Tests)
run: rm /tmp/tests--IKVM.Tests.tar.gz
- name: Package Tests (IKVM.Java.Tests)
run: tar czvf /tmp/tests--IKVM.Java.Tests.tar.gz tests/IKVM.Java.Tests
working-directory: dist
- name: Upload Tests (IKVM.Java.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.Java.Tests
path: /tmp/tests--IKVM.Java.Tests.tar.gz
- name: Delete Tests (IKVM.Java.Tests)
run: rm /tmp/tests--IKVM.Java.Tests.tar.gz
- name: Package Tests (IKVM.Tools.Tests)
run: tar czvf /tmp/tests--IKVM.Tools.Tests.tar.gz tests/IKVM.Tools.Tests
working-directory: dist
- name: Upload Tests (IKVM.Tools.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.Tools.Tests
path: /tmp/tests--IKVM.Tools.Tests.tar.gz
- name: Delete Tests (IKVM.Tools.Tests)
run: rm /tmp/tests--IKVM.Tools.Tests.tar.gz
- name: Package Tests (IKVM.Tools.Exporter.Tests)
run: tar czvf /tmp/tests--IKVM.Tools.Exporter.Tests.tar.gz tests/IKVM.Tools.Exporter.Tests
working-directory: dist
- name: Upload Tests (IKVM.Tools.Exporter.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.Tools.Exporter.Tests
path: /tmp/tests--IKVM.Tools.Exporter.Tests.tar.gz
- name: Delete Tests (IKVM.Tools.Exporter.Tests)
run: rm /tmp/tests--IKVM.Tools.Exporter.Tests.tar.gz
- name: Package Tests (IKVM.Tools.Importer.Tests)
run: tar czvf /tmp/tests--IKVM.Tools.Importer.Tests.tar.gz tests/IKVM.Tools.Importer.Tests
working-directory: dist
- name: Upload Tests (IKVM.Tools.Importer.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.Tools.Importer.Tests
path: /tmp/tests--IKVM.Tools.Importer.Tests.tar.gz
- name: Delete Tests (IKVM.Tools.Importer.Tests)
run: rm /tmp/tests--IKVM.Tools.Importer.Tests.tar.gz
- name: Package Tests (IKVM.MSBuild.Tasks.Tests)
run: tar czvf /tmp/tests--IKVM.MSBuild.Tasks.Tests.tar.gz tests/IKVM.MSBuild.Tasks.Tests
working-directory: dist
- name: Upload Tests (IKVM.MSBuild.Tasks.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.MSBuild.Tasks.Tests
path: /tmp/tests--IKVM.MSBuild.Tasks.Tests.tar.gz
- name: Delete Tests (IKVM.MSBuild.Tasks.Tests)
run: rm /tmp/tests--IKVM.MSBuild.Tasks.Tests.tar.gz
- name: Package Tests (IKVM.MSBuild.Tests)
run: tar czvf /tmp/tests--IKVM.MSBuild.Tests.tar.gz tests/IKVM.MSBuild.Tests
working-directory: dist
- name: Upload Tests (IKVM.MSBuild.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.MSBuild.Tests
path: /tmp/tests--IKVM.MSBuild.Tests.tar.gz
- name: Delete Tests (IKVM.MSBuild.Tests)
run: rm /tmp/tests--IKVM.MSBuild.Tests.tar.gz
- name: Package Tests (IKVM.NET.Sdk.Tests)
run: tar czvf /tmp/tests--IKVM.NET.Sdk.Tests.tar.gz tests/IKVM.NET.Sdk.Tests
working-directory: dist
- name: Upload Tests (IKVM.NET.Sdk.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.NET.Sdk.Tests
path: /tmp/tests--IKVM.NET.Sdk.Tests.tar.gz
- name: Delete Tests (IKVM.NET.Sdk.Tests)
run: rm /tmp/tests--IKVM.NET.Sdk.Tests.tar.gz
- name: Package Tests (IKVM.JTReg.TestAdapter.Tests)
run: tar czvf /tmp/tests--IKVM.JTReg.TestAdapter.Tests.tar.gz tests/IKVM.JTReg.TestAdapter.Tests
working-directory: dist
- name: Upload Tests (IKVM.JTReg.TestAdapter.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.JTReg.TestAdapter.Tests
path: /tmp/tests--IKVM.JTReg.TestAdapter.Tests.tar.gz
- name: Delete Tests (IKVM.JTReg.TestAdapter.Tests)
run: rm /tmp/tests--IKVM.JTReg.TestAdapter.Tests.tar.gz
- name: Package Tests (IKVM.OpenJDK.Tests)
run: tar czvf /tmp/tests--IKVM.OpenJDK.Tests.tar.gz tests/IKVM.OpenJDK.Tests
working-directory: dist
- name: Upload Tests (IKVM.OpenJDK.Tests)
uses: actions/upload-artifact@v4
with:
name: tests--IKVM.OpenJDK.Tests
path: /tmp/tests--IKVM.OpenJDK.Tests.tar.gz
- name: Delete Tests (IKVM.OpenJDK.Tests)
run: rm /tmp/tests--IKVM.OpenJDK.Tests.tar.gz
- name: Package Documentation
run: cd doc && zip /tmp/doc.zip *
- name: Upload Documentation
uses: actions/upload-artifact@v4
with:
name: doc
path: /tmp/doc.zip
test-vars:
name: Test Variables
needs:
- build-ikvm
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.test-vars.outputs.matrix }}
steps:
- id: test-vars
shell: pwsh
env:
FULL_TEST: ${{ inputs.full_test }}
run: |
$sys = @(
"win-x64",
"linux-x64"
)
if ($env:FULL_TEST -eq "true") {
$sys += @( "osx-x64", "osx-arm64" )
}
$tfm = @(
"net472",
"net8.0"
)
if ($env:FULL_TEST -eq "true") {
$tfm += @( "net6.0" )
}
$run = (
"IKVM.Reflection.Tests",
"IKVM.CoreLib.Tests",
"IKVM.Tests",
"IKVM.Java.Tests",
"IKVM.Tools.Exporter.Tests",
"IKVM.Tools.Importer.Tests",
"IKVM.Tools.Tests",
"IKVM.MSBuild.Tasks.Tests",
"IKVM.MSBuild.Tests",
"IKVM.NET.Sdk.Tests",
"IKVM.JTReg.TestAdapter.Tests")
foreach ($_ in (0..15)) {
$run += @("IKVM.OpenJDK.Tests?TestPartition=$_")
}
$exclude = @(
@{
"tfm" = "net472"
"sys" = "linux-x64"
},
@{
"tfm" = "net472"
"sys" = "osx-x64"
},
@{
"tfm" = "net472"
"sys" = "osx-arm64"
},
@{
"run" = "IKVM.MSBuild.Tests"
"tfm" = "net472"
},
@{
"run" = "IKVM.MSBuild.Tests"
"tfm" = "net6.0"
},
@{
"run" = "IKVM.MSBuild.Tests"
"tfm" = "net7.0"
},
@{
"run" = "IKVM.MSBuild.Tests"
"sys" = "linux-x64"
},
@{
"run" = "IKVM.MSBuild.Tests"
"sys" = "osx-x64"
},
@{
"run" = "IKVM.MSBuild.Tests"
"sys" = "osx-arm64"
},
@{
"run" = "IKVM.NET.Sdk.Tests"
"tfm" = "net472"
},
@{
"run" = "IKVM.NET.Sdk.Tests"
"tfm" = "net6.0"
},
@{
"run" = "IKVM.NET.Sdk.Tests"
"tfm" = "net7.0"
}
)
$include = @(
@{
"run" = "IKVM.Tests"
"tfm" = "net8.0"
"sys" = "win-x86"
},
@{
"run" = "IKVM.Tests"
"tfm" = "net8.0"
"sys" = "osx-arm64"
}
)
"matrix=" + (@{
sys = $sys
tfm = $tfm
run = $run
include = $include
exclude = $exclude
} | ConvertTo-Json -Compress).Replace('"', "'") >> $env:GITHUB_OUTPUT
test:
needs:
- build-ikvm
- test-vars
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.test-vars.outputs.matrix) }}
name: Test (${{ matrix.run }}:${{ matrix.tfm }}:${{ matrix.sys }})
timeout-minutes: 240
runs-on: ${{ fromJSON('{"win-x86":["windows-2022"],"win-x64":["windows-2022"],"linux-x64":["ubuntu-22.04"],"osx-x64":["macos-13"],"osx-arm64":["macos-14"]}')[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\work
Add-Content $env:GITHUB_ENV "`nWORKPATH=$dir\work`n"
Add-Content $env:GITHUB_ENV "`nTMP=$dir\temp`nTEMP=$dir\temp`nTMPDIR=$dir\temp`n"
Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=$dir\dotnet`n"
- 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/work
Add-Content $env:GITHUB_ENV "`nWORKPATH=$dir/work`n"
Add-Content $env:GITHUB_ENV "`nTMP=$dir/temp`nTEMP=$dir/temp`nTMPDIR=$dir/temp`n"
Add-Content $env:GITHUB_ENV "`nDOTNET_INSTALL_DIR=$dir/dotnet`n"
- name: Install ProcDump
if: runner.os == 'Windows'
shell: pwsh
run: choco install procdump -y; Add-Content $env:GITHUB_PATH "$env:ProgramData\chocolatey\bin\"
- name: Install Visual C++ Runtime
if: runner.os == 'Windows'
shell: pwsh
run: choco install vcredist-all -y
- name: Start XVFB (Linux)
if: runner.os == 'Linux'
run: /usr/bin/Xvfb :99 & disown; echo DISPLAY=:99 >> $GITHUB_ENV
- name: Setup .NET 6.0
if: matrix.sys != 'win-x86'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Setup .NET 7.0
if: matrix.sys != 'win-x86'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Setup .NET 8.0
if: matrix.sys != 'win-x86'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup .NET 6.0
if: matrix.sys == 'win-x86'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
env:
PROCESSOR_ARCHITECTURE: x86
- name: Setup .NET 7.0
if: matrix.sys == 'win-x86'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
env:
PROCESSOR_ARCHITECTURE: x86
- name: Setup .NET 8.0
if: matrix.sys == 'win-x86'
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
env:
PROCESSOR_ARCHITECTURE: x86
- name: Setup WSL
if: runner.os == 'Windows'
uses: Vampire/setup-wsl@v3
- name: Setup Linux
if: runner.os == 'Linux'
shell: bash
run: sudo apt-get update && sudo apt-get install -y libasound2 xvfb
- name: Get Test Name
uses: actions/github-script@v7
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@v4
with:
name: tests--${{ steps.test-name.outputs.result }}
path: ${{ env.WORKPATH }}
- name: Restore Tests
run: tar xzvf tests--${{ steps.test-name.outputs.result }}.tar.gz
working-directory: ${{ env.WORKPATH }}
- name: Delete Tests
shell: pwsh
run: ri tests--${{ steps.test-name.outputs.result }}.tar.gz
working-directory: ${{ env.WORKPATH }}
- 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 and process test assemblies
$tests = gi (".\tests\$tst\$tfm\*.Tests.dll", ".\tests\$tst\$tfm\*.Tests.exe")
if ($tests) {
$argl = @(
"-f", $tfm,
"--blame",
"--blame-crash",
"--blame-hang",
"--blame-hang-timeout", "120m",
"--blame-hang-dump-type", "full",
"-v:diag",
"--results-directory", "TestResults",
"--logger:console;verbosity=detailed",
"--logger:trx"
# "--collect", "Code Coverage"
)
if ($sys -eq "win-x86") {
$argl += @("-a", "x86")
}
$runsettings = $(gi .\tests\$tst\$tfm\*.runsettings)
if ($runsettings) {
$argl += "--settings:$runsettings"
}
if ($qry -ne "" -and $qry -ne $null) {
$argl += @("--filter", $qry)
Add-Content $env:GITHUB_ENV "`nRET=TestResults--$tst-$qry--$tfm--$sys"
} else {
Add-Content $env:GITHUB_ENV "`nRET=TestResults--$tst--$tfm--$sys"
}
dotnet test @argl $tests[0].FullName
}
working-directory: ${{ env.WORKPATH }}
- name: Archive Test Results
if: always() && startsWith(env.RET, 'TestResults--')
run: tar czvf ${{ env.TMPDIR }}/TestResults.tar.gz TestResults
working-directory: ${{ env.WORKPATH }}
- name: Upload Test Results
if: always() && startsWith(env.RET, 'TestResults--')
uses: actions/upload-artifact@v4
with:
name: ${{ env.RET }}
path: ${{ env.TMPDIR }}/TestResults.tar.gz
release:
name: Release
needs:
- test
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Linux)
uses: jlumbroso/free-disk-space@main
with:
swap-storage: false
large-packages: false
- name: Checkout Source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v1
with:
versionSpec: 5.x
- name: Execute GitVersion
id: GitVersion
uses: gittools/actions/gitversion/execute@v1
with:
useConfigFile: true
- name: Download NuGet Packages
uses: actions/download-artifact@v4
with:
name: nuget
path: dist
- name: Restore NuGet Packages
run: tar xzvf nuget.tar.gz
working-directory: dist
- name: Download Tools
uses: actions/download-artifact@v4
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 JRE
uses: actions/download-artifact@v4
with:
name: jre
path: dist
- name: Restore JRE
run: tar xzvf jre.tar.gz
working-directory: dist
- name: Compress JRE
shell: pwsh
run: cd dist && gi jre/*/* | %{ $tfm = $_.Parent.Name; $rid = $_.Name; Push-Location "jre/$tfm/$rid"; zip -r "../../IKVM-${env:GitVersion_SemVer}-jre-$tfm-$rid.zip" .; tar czvf "../../IKVM-${env:GitVersion_SemVer}-jre-$tfm-$rid.tar.gz" .; Pop-Location }
- name: Download JDK
uses: actions/download-artifact@v4
with:
name: jdk
path: dist
- name: Restore JDK
run: tar xzvf jdk.tar.gz
working-directory: dist
- name: Compress JDK
shell: pwsh
run: cd dist && gi jdk/*/* | %{ $tfm = $_.Parent.Name; $rid = $_.Name; Push-Location "jdk/$tfm/$rid"; zip -r "../../IKVM-${env:GitVersion_SemVer}-jdk-$tfm-$rid.zip" .; tar czvf "../../IKVM-${env:GitVersion_SemVer}-jdk-$tfm-$rid.tar.gz" .; Pop-Location }
- name: Download Documentation
uses: actions/download-artifact@v4
with:
name: doc
path: dist
- name: Create Release
if: github.ref_type == 'tag'
uses: ncipollo/[email protected]
with:
tag: ${{ github.ref_name }}
allowUpdates: true
omitBodyDuringUpdate: true
artifacts: dist/nuget/*.nupkg,dist/jre/*.zip,dist/jre/*.tar.gz,dist/jdk/*.zip,dist/jdk/*.tar.gz,dist/tools/*.zip,dist/tools/*.tar.gz,dist/doc.zip
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 }}