Skip to content

Commit

Permalink
update docs and add -Yes option to WINDOZE part 8
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Dec 2, 2024
1 parent f4f8a39 commit 7efc3e7
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,21 @@ jobs:
- checkout
- run:
name: Install Lando on Linux
command: ./setup-lando.sh --no-setup && lando version --all
command: |
./setup-lando.sh --no-setup
lando version --all
lando config
setup-on-linux:
machine:
image: ubuntu-2204:current
steps:
- checkout
- run:
name: Setup Lando on Linux
command: ./setup-lando.sh && lando version --all
command: |
./setup-lando.sh
lando version --all
lando config
install-on-macos:
macos:
Expand All @@ -25,15 +31,22 @@ jobs:
- checkout
- run:
name: Install Lando on macOS
command: ./setup-lando.sh --no-setup lando version --all
command: |
./setup-lando.sh --no-setup
lando version --all
lando config
setup-on-macos:
macos:
xcode: "14.2.0"
steps:
- checkout
- run:
name: Setup Lando on macOS
command: ./setup-lando.sh --no-setup && lando setup -y --skip-networking && lando version --all
command: |
./setup-lando.sh --no-setup
lando setup -y --skip-networking
lando version --all
lando config
install-on-windows:
machine:
Expand All @@ -46,6 +59,7 @@ jobs:
command: |
.\setup-lando.ps1 -NoSetup
lando version --all
lando config
shell: powershell.exe
setup-on-windows:
machine:
Expand All @@ -59,6 +73,7 @@ jobs:
.\setup-lando.ps1 -NoSetup
lando setup -y --skip-networking
lando version --all
lando config
shell: powershell.exe

workflows:
Expand Down

0 comments on commit 7efc3e7

Please sign in to comment.