Skip to content

Commit d5730e8

Browse files
committed
mix in other linix and macos circleci tests
1 parent c727b72 commit d5730e8

File tree

1 file changed

+29
-20
lines changed

1 file changed

+29
-20
lines changed

.circleci/config.yml

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,39 @@
11
version: 2.1
22

33
jobs:
4+
install-on-linux:
5+
machine:
6+
image: ubuntu-2204:current
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install Lando on Linux
11+
command: ./setup-lando.sh --no-setup && lando version --all
412
setup-on-linux:
513
machine:
614
image: ubuntu-2204:current
715
steps:
816
- checkout
917
- run:
10-
name: Ins Lando on Linux
11-
command: |
12-
pwd
13-
env
14-
whoami
15-
ls -lsa ~
16-
chmod +x ./setup-lando.sh
17-
./setup-lando.sh --debug --version "3-dev" --no-setup
18-
lando version
18+
name: Setup Lando on Linux
19+
command: ./setup-lando.sh && lando version --all
1920

20-
# setup-on-macos:
21-
# macos:
22-
# xcode: "14.2.0"
23-
# steps:
24-
# - checkout
25-
# - run:
26-
# name: Run Bash Script on macOS
27-
# command: |
28-
# chmod +x ./setup-lando.sh
29-
# ./setup-lando.sh --debug --version "3-dev" --no-setup
30-
# lando version
21+
install-on-macos:
22+
macos:
23+
xcode: "14.2.0"
24+
steps:
25+
- checkout
26+
- run:
27+
name: Install Lando on macOS
28+
command: ./setup-lando.sh --no-setup && lando version --all
29+
setup-on-macos:
30+
macos:
31+
xcode: "14.2.0"
32+
steps:
33+
- checkout
34+
- run:
35+
name: Run Bash Script on macOS
36+
command: ./setup-lando.sh --no-setup && lando setup -y --skip-networking && lando version --all
3137

3238
# setup-on-windows:
3339
# machine:
@@ -44,4 +50,7 @@ jobs:
4450
workflows:
4551
setup-lando:
4652
jobs:
53+
- install-on-linux
54+
- install-on-macos
4755
- setup-on-linux
56+
- setup-on-macos

0 commit comments

Comments
 (0)