Skip to content

Commit feb50e4

Browse files
authored
Merge pull request #13 from avinassh/12-install-arm
Fix installations for ARM machines
2 parents 7b0b499 + d2b6922 commit feb50e4

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/test-install.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,17 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, macos-latest]
15+
os: [ubuntu-latest, macos-latest, macos-14]
1616

1717
steps:
1818
- name: Checkout repository
1919
uses: actions/checkout@v2
2020

21+
- name: OS and arch
22+
run: |
23+
echo "Runner label: ${{ matrix.os }}"
24+
echo "OS: $(uname -s) Arch: $(uname -m)"
25+
2126
- name: Run Install Script
2227
run: |
2328
export TURSO_INSTALL_SKIP_SIGNUP=true

install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ install_libsql_server() {
141141
case $ARCH in
142142
x86_64) ARCH_TARGET="x86_64" ;;
143143
aarch64) ARCH_TARGET="aarch64" ;;
144+
arm64) ARCH_TARGET="aarch64" ;;
144145
*)
145146
printf "Architecture ${ARCH} is not supported for libsql-server\n"
146147
return 1

0 commit comments

Comments
 (0)