Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.

Commit 60d363d

Browse files
committed
fix: test install ci issue
1 parent a3d93f0 commit 60d363d

File tree

3 files changed

+43
-3
lines changed

3 files changed

+43
-3
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: test-install-linux
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [ main ]
7+
8+
jobs:
9+
test-install-script:
10+
name: Test install script for ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
include:
15+
- os: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: test install script
19+
run: |
20+
curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh
21+
curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: test-install-mac
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [ main ]
7+
8+
jobs:
9+
test-install-script:
10+
name: Test install script for ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
include:
15+
- os: macos-latest
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: test install script
19+
run: |
20+
curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh
21+
curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh

.github/workflows/test_install_script.yaml renamed to .github/workflows/test_install_win.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: test-install-script
1+
name: test-install-win
22

33
on:
44
pull_request:
@@ -12,9 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- os: ubuntu-latest
1615
- os: windows-latest
17-
- os: macos-latest
1816
steps:
1917
- uses: actions/checkout@v2
2018
- name: test install script

0 commit comments

Comments
 (0)