Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install Run.jl from General registry #204

Merged
merged 1 commit into from
Sep 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-xfail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
git config --global user.name "$GITHUB_ACTOR"
git merge "origin/$xfailbranch"
git log --graph --oneline -n10
julia -e 'using Pkg; pkg"add https://github.com/tkf/Run.jl"'
julia -e 'using Pkg; pkg"add Run@0.1"'
julia -e 'using Run; Run.test(project = "test/environments/main", xfail = true)'
else
echo "No branch named $xfailbranch"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
version: 1.4
- name: Install Run.jl
run: julia -e 'using Pkg; pkg"add https://github.com/tkf/Run.jl"'
run: julia -e 'using Pkg; pkg"add Run@0.1"'
- name: Install dependencies
run: julia -e 'using Run; Run.prepare_docs()'
- name: Build and deploy
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if: branch = master OR tag IS present OR type != push

before_install:
- unset JULIA_PROJECT
- julia -e 'using Pkg; pkg"add https://github.com/tkf/Run.jl"'
- julia -e 'using Pkg; pkg"add Run@0.1"'
install:
- julia -e 'using Run; Run.prepare("test/environments/main")'
script:
Expand Down