Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# - https://github.com/marketplace/actions/checkout
# - https://github.com/chawyehsu/moonbit-binaries/releases

name: Setup-Moonbit@Dev
name: Setup-Moonbit@Dev Basic
on:
workflow_dispatch:
push:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [windows-latest, ubuntu-latest, ubuntu-22.04-arm, macos-latest]

runs-on: ${{ matrix.os }}
name: Setup Latest@${{ matrix.os }}
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [windows-latest, ubuntu-latest, ubuntu-22.04-arm, macos-latest]

runs-on: ${{ matrix.os }}
name: Setup Nightly@${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
os: [windows-latest, ubuntu-latest, ubuntu-22.04-arm, macos-latest]
runs-on: ${{ matrix.os }}
name: Setup MoonBit@${{ matrix.os }}
steps:
Expand Down
1 change: 1 addition & 0 deletions cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ words:
- psql
- msvc
- esep
- Etco
- rsort
- ECODE
- endfor
Expand Down
1 change: 1 addition & 0 deletions nu/moonbit.nu
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const CLI_HOST = 'https://cli.moonbitlang.com'
const VALID_VERSION_TAG = [latest, pre-release, nightly]
const ARCH_TARGET_MAP = {
linux_x86_64: 'linux-x86_64',
linux_aarch64: 'linux-aarch64',
macos_x86_64: 'darwin-x86_64',
macos_aarch64: 'darwin-aarch64',
windows_x86_64: 'windows-x86_64',
Expand Down
Loading