-
Notifications
You must be signed in to change notification settings - Fork 4.7k
64 lines (60 loc) · 1.8 KB
/
jit-format.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
name: Format jit codebase
on:
pull_request:
paths:
- '.github/workflows/jit-format.yml'
- 'src/coreclr/jit/**'
branches: [ main ]
jobs:
format:
strategy:
fail-fast: false
matrix:
os:
- name: linux
image: ubuntu-latest
container: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-cross-amd64-net9.0
extension: '.sh'
cross: '--cross'
rootfs: '/crossrootfs/x64'
- name: windows
image: windows-latest
extension: '.cmd'
cross: ''
rootfs: ''
runs-on: ${{ matrix.os.image }}
container: ${{ matrix.os.container }}
name: Format jit codebase ${{ matrix.os.name }}
steps:
- name: Checkout jitutils
uses: actions/checkout@v4
with:
path: jitutils
repository: dotnet/jitutils
ref: main
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build jitutils
run: |
./bootstrap${{ matrix.os.extension }}
working-directory: jitutils
- name: Checkout runtime
uses: actions/checkout@v4
with:
path: runtime
- name: Install Python
uses: actions/setup-python@v5
- name: Run jitformat.py
run: |
python3 runtime/src/coreclr/scripts/jitformat.py --jitutils jitutils -r runtime -o ${{ matrix.os.name }} -a x64 ${{ matrix.os.cross }}
env:
ROOTFS_DIR: ${{ matrix.os.rootfs }}
- name: Publish format.patch
uses: actions/upload-artifact@v4
with:
path: runtime/format.patch
name: format.${{matrix.os.name}}.patch
if: failure()