File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 34
34
- os : windows-2025
35
35
clang_version : 16.0.0
36
36
enable_pic : true
37
+ - os : ubuntu-24.04-arm
38
+ clang_version : 16.0.0
39
+ llvm_asset_suffix : aarch64-linux-gnu
40
+ enable_pic : true
41
+
37
42
steps :
38
43
- uses : actions/checkout@v4.1.7
39
44
with :
44
49
set -ex
45
50
sudo apt-get update
46
51
sudo apt-get install -y libtinfo5
47
- if : startsWith(matrix.os, 'ubuntu-')
52
+ if : startsWith(matrix.os, 'ubuntu-22 ')
48
53
49
54
- name : Install LLVM tools (Windows)
50
55
shell : bash
Original file line number Diff line number Diff line change @@ -37,9 +37,10 @@ LIBC_TEST_URL ?= https://github.com/bytecodealliance/libc-test
37
37
LIBC_TEST = $(DOWNDIR ) /libc-test
38
38
LIBRT_URL ?= https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-24/libclang_rt.builtins-wasm32-wasi-24.0.tar.gz
39
39
LIBRT = $(DOWNDIR ) /libclang_rt.builtins-wasm32.a
40
- WASMTIME_URL ?= https://github.com/bytecodealliance/wasmtime/releases/download/v26.0.1/wasmtime-v26.0.1-x86_64-linux.tar.xz
40
+ ARCH := $(shell uname -m)
41
+ WASMTIME_URL ?= https://github.com/bytecodealliance/wasmtime/releases/download/v26.0.1/wasmtime-v26.0.1-$(ARCH ) -linux.tar.xz
41
42
WASMTIME = $(abspath $(DOWNDIR ) /$(shell basename $(WASMTIME_URL ) .tar.xz) /wasmtime)
42
- WASM_TOOLS_URL ?= https://github.com/bytecodealliance/wasm-tools/releases/download/v1.220.0/wasm-tools-1.220.0-x86_64 -linux.tar.gz
43
+ WASM_TOOLS_URL ?= https://github.com/bytecodealliance/wasm-tools/releases/download/v1.220.0/wasm-tools-1.220.0-$( ARCH ) -linux.tar.gz
43
44
WASM_TOOLS = $(DOWNDIR ) /$(shell basename $(WASM_TOOLS_URL ) .tar.gz) /wasm-tools
44
45
ADAPTER_URL ?= https://github.com/bytecodealliance/wasmtime/releases/download/v26.0.1/wasi_snapshot_preview1.command.wasm
45
46
ADAPTER = $(DOWNDIR ) /wasi_snapshot_preview1.command.wasm
You can’t perform that action at this time.
0 commit comments