Docs merge #109
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: POSIX Script Replacer Tests | |
on: | |
pull_request: | |
jobs: | |
setup-lando-posix-replacer-test: | |
runs-on: ${{ matrix.os }} | |
env: | |
LANDO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-13 | |
old-version: https://github.com/lando/cli/releases/download/v3.21.0-beta.2/lando-macos-x64-v3.21.0-beta.2-slim | |
- os: macos-14 | |
old-version: https://github.com/lando/cli/releases/download/v3.21.0-beta.2/lando-macos-arm64-v3.21.0-beta.2-slim | |
- os: ubuntu-24.04 | |
old-version: https://github.com/lando/cli/releases/download/v3.21.0-beta.2/lando-linux-x64-v3.21.0-beta.2-slim | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get older Lando version ${{ matrix.old-version }} | |
shell: bash | |
run: | | |
mkdir -p /usr/local/bin | |
curl \ | |
--fail \ | |
--location \ | |
--progress-bar \ | |
--output "/usr/local/bin/lando" \ | |
"${{ matrix.old-version }}" | |
chmod +x /usr/local/bin/lando | |
which lando | grep /usr/local/bin/lando | |
lando version --all | |
- name: Replace Lando with setup-script | |
shell: bash | |
run: | | |
./setup-lando.sh --debug --no-setup | |
lando version --all | |