forked from rkyleg/asdf-julia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rkyleg#10 from lassepe/overhaul
Overhaul: Make CI-checks pass, allow different architectures, support julia nightly builds, support freeBSD
- Loading branch information
Showing
9 changed files
with
179 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
test: | ||
name: Test ${{ matrix.os }} - ${{ matrix.arch }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
arch: [x64] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: asdf_plugin_test | ||
uses: asdf-vm/actions/plugin-test@v1 | ||
with: | ||
command: "julia --version" | ||
env: | ||
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,23 @@ | ||
Travis CI Status: | ||
[![Build Status](https://travis-ci.org/rkyleg/asdf-julia.svg?branch=master)](https://travis-ci.org/rkyleg/asdf-julia) | ||
Gitlab CI Status: | ||
[![build status](https://gitlab.com/rkyleg/asdf-julia/badges/master/build.svg)](https://gitlab.com/rkyleg/asdf-julia/commits/master) | ||
# asdf-julia | ||
|
||
Julia plugin for asdf version manager | ||
![CI](https://github.com/lassepe/asdf-julia/workflows/CI/badge.svg) | ||
|
||
**Install** | ||
A julia plugin for the asdf version manager. | ||
|
||
## Install | ||
|
||
```bash | ||
asdf plugin-add julia https://github.com/rkyleg/asdf-julia.git | ||
``` | ||
|
||
**Use** | ||
## Usage | ||
|
||
Check [asdf](ashttps://github.com/asdf-vm/asdfdf) readme for instructions on how to install & manage versions of Julia. | ||
|
||
**A few notes:** | ||
|
||
The list-all script uses python to import and parse the list of releases from github. | ||
If this causes problems for anyone, please let me know. I am making the assumption that python is | ||
installed on everyone's machine. | ||
|
||
Also, any pre-release or rc versions of julia are excluded as these didn't seem to be uploaded to their | ||
Amazon S3 bucket. | ||
|
||
On Linux: | ||
There is an option to install the desktop entry at the end of the install process, | ||
choose 'y' if you want to do this or 'n' if you do not. | ||
## A few notes | ||
|
||
On OSX: | ||
The script pulls down the app package from the Julia website, but does not install | ||
as a native app. Instead, it copies the julia directory from the Resources folder | ||
inside the app package, thus providing the binary to asdf. | ||
|
||
The script pulls down the app package from the Julia website, but does not install | ||
as a native app. Instead, it copies the julia directory from the Resources folder | ||
inside the app package, thus providing the binary to asdf. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.