Skip to content

Commit 1b98909

Browse files
committed
temp
1 parent 14c599d commit 1b98909

File tree

1 file changed

+14
-21
lines changed

1 file changed

+14
-21
lines changed

.github/workflows/ci.yml

+14-21
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
platform:
1717
- name: Linux (amd64)
1818
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
2424

2525
name: "Build: ${{ matrix.platform.name }}"
2626
runs-on: ${{ matrix.platform.os }}
@@ -89,25 +89,18 @@ jobs:
8989
uses: actions/checkout@v4
9090
- name: Setup
9191
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
9596
choco install nuget.commandline
96-
- name: Download linux-x64
97+
- name: Download artifacts
9798
uses: actions/download-artifact@v4
9899
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
111104
- name: Calculate Version
112105
id: version
113106
run: |

0 commit comments

Comments
 (0)