Skip to content

Commit b95cee1

Browse files
committed
Merge branch 'build' of github.com:hez2010/Satori into build
2 parents 75b6aed + a351505 commit b95cee1

File tree

1 file changed

+49
-1
lines changed

1 file changed

+49
-1
lines changed

.github/workflows/satori.yaml

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,52 @@ jobs:
4646
path: |
4747
artifacts/bin/coreclr/linux.arm64.Release/libcoreclr.so
4848
artifacts/bin/coreclr/linux.arm64.Release/libclrjit.so
49-
artifacts/bin/coreclr/linux.arm64.Release/System.Private.CoreLib.dll
49+
artifacts/bin/coreclr/linux.arm64.Release/System.Private.CoreLib.dll
50+
51+
build_windows_x86:
52+
53+
runs-on: windows-2025
54+
steps:
55+
- uses: actions/checkout@v4
56+
- name: Build
57+
run: ./build.cmd -s clr -c Release -arch x86
58+
- name: Publish Artifacts
59+
uses: actions/[email protected]
60+
with:
61+
name: windows_x86
62+
path: |
63+
artifacts/bin/coreclr/windows.x86.Release/coreclr.dll
64+
artifacts/bin/coreclr/windows.x86.Release/clrjit.dll
65+
artifacts/bin/coreclr/windows.x86.Release/System.Private.CoreLib.dll
66+
67+
build_windows_x64:
68+
69+
runs-on: windows-2025
70+
steps:
71+
- uses: actions/checkout@v4
72+
- name: Build
73+
run: ./build.cmd -s clr -c Release -arch x64
74+
- name: Publish Artifacts
75+
uses: actions/[email protected]
76+
with:
77+
name: windows_x64
78+
path: |
79+
artifacts/bin/coreclr/windows.x64.Release/coreclr.dll
80+
artifacts/bin/coreclr/windows.x64.Release/clrjit.dll
81+
artifacts/bin/coreclr/windows.x64.Release/System.Private.CoreLib.dll
82+
83+
build_windows_arm64:
84+
85+
runs-on: windows-2025
86+
steps:
87+
- uses: actions/checkout@v4
88+
- name: Build
89+
run: ./build.cmd -s clr -c Release -arch arm64
90+
- name: Publish Artifacts
91+
uses: actions/[email protected]
92+
with:
93+
name: windows_arm64
94+
path: |
95+
artifacts/bin/coreclr/windows.arm64.Release/coreclr.dll
96+
artifacts/bin/coreclr/windows.arm64.Release/clrjit.dll
97+
artifacts/bin/coreclr/windows.arm64.Release/System.Private.CoreLib.dll

0 commit comments

Comments
 (0)