@@ -16,11 +16,11 @@ jobs:
16
16
platform :
17
17
- name : Linux (amd64)
18
18
os : ubuntu-latest
19
- - name : macOS (amd64, arm64)
20
- os : macos-latest
21
- cmake_options : -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
22
- - name : Windows (amd64)
23
- os : windows-latest
19
+ # - name: macOS (amd64, arm64)
20
+ # os: macos-latest
21
+ # cmake_options: -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
22
+ # - name: Windows (amd64)
23
+ # os: windows-latest
24
24
25
25
name : " Build: ${{ matrix.platform.name }}"
26
26
runs-on : ${{ matrix.platform.os }}
@@ -89,25 +89,18 @@ jobs:
89
89
uses : actions/checkout@v4
90
90
- name : Setup
91
91
run : |
92
- mkdir -p build/runtimes/linux-x64
93
- mkdir -p build/runtimes/osx
94
- mkdir -p build/runtimes/win-x64
92
+ mkdir -p tmp
93
+ mkdir -p build/runtimes/linux-x64/native
94
+ mkdir -p build/runtimes/osx/native
95
+ mkdir -p build/runtimes/win-x64/native
95
96
choco install nuget.commandline
96
- - name : Download linux-x64
97
+ - name : Download artifacts
97
98
uses : actions/download-artifact@v4
98
99
with :
99
- name : ' linux-x64.zip'
100
- path : build/runtimes/linux-x64/native
101
- - name : Download osx
102
- uses : actions/download-artifact@v4
103
- with :
104
- name : ' osx.zip'
105
- path : build/runtimes/osx/native
106
- - name : Download win-x64
107
- uses : actions/download-artifact@v4
108
- with :
109
- name : ' win-x64.zip'
110
- path : build/runtimes/win-x64/native
100
+ path : tmp
101
+ - name : Temp
102
+ shell : bash
103
+ run : ls -FlasR
111
104
- name : Calculate Version
112
105
id : version
113
106
run : |
0 commit comments