Skip to content

Commit c94d265

Browse files
authored
Merge pull request #11 from staticfloat/mg/travis-branch
Fix name of branch for CI
2 parents b3c4c60 + 2ddaf64 commit c94d265

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.drone.jsonnet

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ local Pipeline(os, arch, version, alpine=false) = {
1010
name: "Run tests",
1111
image: "julia:"+version+(if alpine then "-alpine" else ""),
1212
commands: [
13-
"julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'",
14-
"julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'",
15-
"julia --project=. --check-bounds=yes --color=yes test/runtests.jl"
13+
"julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'",
14+
"julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'",
15+
"julia --project=test --check-bounds=yes --color=yes test/runtests.jl"
1616
]
1717
}
1818
],
1919
trigger: {
20-
branch: ["master"]
20+
branch: ["main"]
2121
}
2222
};
2323

.drone.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ steps:
1010
- name: Run tests
1111
image: julia:1.6
1212
commands:
13-
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'"
14-
- "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'"
15-
- julia --project=. --check-bounds=yes --color=yes test/runtests.jl
13+
- "julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'"
14+
- "julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'"
15+
- julia --project=test --check-bounds=yes --color=yes test/runtests.jl
1616

1717
trigger:
1818
branch:
19-
- master
19+
- main
2020

2121
...

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ matrix:
77
allow_failures:
88
- julia: nightly
99
script:
10-
- julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'
11-
- julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'
12-
- julia --project=. --check-bounds=yes --color=yes test/runtests.jl
10+
- julia --project=test --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'
11+
- julia --project=test --check-bounds=yes --color=yes -e 'using Pkg; Pkg.instantiate()'
12+
- julia --project=test --check-bounds=yes --color=yes test/runtests.jl
1313
notifications:
1414
email: false
1515

1616
branches:
1717
only:
18-
- master
18+
- main
1919
- gh-pages # For building documentation
2020
- /^testing-.*$/ # testing branches
2121
- /^v[0-9]+\.[0-9]+\.[0-9]+$/ # version tags

0 commit comments

Comments
 (0)