Skip to content

new: Add task archive/hydrate to daemon. #5564

new: Add task archive/hydrate to daemon.

new: Add task archive/hydrate to daemon. #5564

Workflow file for this run

name: PR
on:
pull_request:
env:
MOON_DEBUG: 'true'
PROTO_DEBUG: 'true'
jobs:
installer:
name: Install script check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v6
# Unix
- run: bash ./website/static/install/moon.sh latest
if: ${{ runner.os != 'Windows' }}
- run: bash ./website/static/install/moon.sh 1.20.0
if: ${{ runner.os != 'Windows' }}
- run: bash ./website/static/install/moon.sh 2.0.0-beta.0
if: ${{ runner.os != 'Windows' }}
- run: bash ./website/static/install/proto.sh latest
if: ${{ runner.os != 'Windows' }}
- run: bash ./website/static/install/proto.sh 0.40.0
if: ${{ runner.os != 'Windows' }}
# Windows
- run: pwsh.exe ./website/static/install/moon.ps1 latest
if: ${{ runner.os == 'Windows' }}
- run: pwsh.exe ./website/static/install/moon.ps1 1.20.0
if: ${{ runner.os == 'Windows' }}
- run: pwsh.exe ./website/static/install/moon.ps1 2.0.0-beta.0
if: ${{ runner.os == 'Windows' }}
- run: pwsh.exe ./website/static/install/proto.ps1
if: ${{ runner.os == 'Windows' }}
- run: pwsh.exe ./website/static/install/proto.ps1 0.40.0
if: ${{ runner.os == 'Windows' }}