Skip to content
This repository was archived by the owner on Mar 26, 2021. It is now read-only.

Commit 1760e0a

Browse files
authored
README: Rearrange examples (#14)
1 parent b8a84ba commit 1760e0a

File tree

2 files changed

+17
-57
lines changed

2 files changed

+17
-57
lines changed

.travis.yml

Lines changed: 13 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# arch:
2-
# - x86
3-
# - x64
4-
# - arm64
1+
arch:
2+
- "i386"
3+
- "amd64"
4+
- "arm64"
55

66
branches:
77
only:
@@ -16,63 +16,23 @@ jobs:
1616
- julia: nightly
1717
fast_finish: true
1818
include:
19-
- os: linux
20-
arch: x64
21-
julia: "1.3"
22-
name: "Linux 1.3 64-bit"
23-
- os: linux
24-
arch: x64
25-
julia: nightly
26-
name: "Linux nightly 64-bit"
27-
- os: linux
28-
arch: x86
29-
julia: "1.3"
30-
name: "Linux 1.3 32-bit"
31-
- os: linux
32-
arch: x86
33-
julia: nightly
34-
name: "Linux nightly 32-bit"
35-
- os: linux
36-
arch: arm64
37-
julia: "1.3"
38-
name: "Linux 1.3 AArch64"
39-
- os: linux
40-
arch: arm64
41-
julia: nightly
42-
name: "Linux nightly AArch64"
43-
- os: osx
44-
julia: "1.3"
45-
name: "macOS 1.3"
46-
- os: osx
47-
julia: nightly
48-
name: "macOS nightly"
49-
- os: windows
50-
arch: x64
51-
julia: "1.3"
52-
name: "Win 1.3 64-bit"
53-
- os: windows
54-
arch: x64
55-
julia: nightly
56-
name: "Win nightly 64-bit"
5719
- os: windows
58-
arch: x86
20+
arch: "i386"
5921
julia: "1.3"
60-
name: "Win 1.3 32-bit"
6122
- os: windows
62-
arch: x86
23+
arch: "i386"
6324
julia: nightly
64-
name: "Win nightly 32-bit"
6525

66-
# julia:
67-
# - "1.3"
68-
# - nightly
26+
julia:
27+
- "1.3"
28+
- nightly
6929

7030
language: julia
7131

72-
# os:
73-
# - linux
74-
# - osx
75-
# - windows
32+
os:
33+
- linux
34+
- osx
35+
- windows
7636

7737
notifications:
7838
email: false

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ including (but not limited to) Windows, macOS, Linux, and FreeBSD.
2121
```julia
2222
using GitCommand
2323

24-
run(git`clone https://github.com/JuliaRegistries/General`)
24+
git() do git
25+
run(`$git clone https://github.com/JuliaRegistries/General`)
26+
end
2527
```
2628

2729
```julia
2830
using GitCommand
2931

30-
git() do git
31-
run(`$git clone https://github.com/JuliaRegistries/General`)
32-
end
32+
run(git`clone https://github.com/JuliaRegistries/General`)
3333
```

0 commit comments

Comments
 (0)