-
Notifications
You must be signed in to change notification settings - Fork 152
83 lines (83 loc) · 2.05 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
name: planetarium/libplanet/main
on:
push:
branches:
- main
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_API_ACCESS_TOKEN }}
jobs:
linux-netcore-build:
defaults:
run:
working-directory: "/mnt/ramdisk"
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/netcore_build_base"
linux-netcore-test-netmq:
defaults:
run:
working-directory: "/mnt/ramdisk"
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0
needs:
- linux-netcore-build
env:
TRANSPORT_TYPE: netmq
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/linux_netcore_test_base"
with:
code_coverage: false
linux-netcore-test-ar-SA:
defaults:
run:
working-directory: "/mnt/ramdisk"
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0
needs:
- linux-netcore-build
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/linux_netcore_test_base"
with:
locale: ar_SA.UTF-8
code_coverage: false
linux-netcore-test-fr-FR:
defaults:
run:
working-directory: "/mnt/ramdisk"
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0
needs:
- linux-netcore-build
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/linux_netcore_test_base"
with:
locale: fr_FR.UTF-8
code_coverage: false
macos-netcore-test:
runs-on: macos-latest
needs:
- linux-netcore-build
steps:
- uses: actions/[email protected]
- uses: maxim-lobanov/[email protected]
with:
xcode-version: 14.3.1
- uses: "./.github/actions/macos_netcore_test_base"
with:
code_coverage: false
windows-netcore-test:
runs-on: ubuntu-latest
needs:
- linux-netcore-build
steps:
- uses: actions/[email protected]
- uses: "./.github/actions/netcore_test_base"