Skip to content

Commit

Permalink
bump Arrow + Legolas compat (#10)
Browse files Browse the repository at this point in the history
* bump Arrow + Legolas compat

* Bump version

* Test on multiple Legolas versions

code borrowed from https://github.com/beacon-biosignals/Onda.jl/blob/0cb273b8208a8a149d254bb8a6b9ee20ea80aa8c/.github/workflows/CI.yml

* Update CI.yml
  • Loading branch information
ericphanson authored Oct 29, 2021
1 parent 9f2903f commit e41a71a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ on:
- 'Project.toml'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Julia ${{ matrix.version }} - Legolas ${{ matrix.legolas-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
legolas-version:
- '0.2'
- '0.3'
version:
- '1.5' # earliest supported version
- '1' # current release
Expand All @@ -38,6 +41,11 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: "Install Legolas version"
shell: julia --color=yes --project=. {0}
run: |
using Pkg
Pkg.add(Pkg.PackageSpec(; name="Legolas", version="${{ matrix.legolas-version }}"))
- uses: actions/cache@v2
with:
path: ~/.julia/artifacts
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LegolasFlux"
uuid = "eb5f792d-d1b1-4535-bae3-d5649ec7daa4"
authors = ["Beacon Biosignals, Inc."]
version = "0.1.3"
version = "0.1.4"

[deps]
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45"
Expand All @@ -10,10 +10,10 @@ Legolas = "741b9549-f6ed-4911-9fbf-4a1c0c97f0cd"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[compat]
Arrow = "1"
Arrow = "1, 2"
Flux = "0.12"
Functors = "0.2.6"
Legolas = "0.1, 0.2"
Legolas = "0.1, 0.2, 0.3"
Tables = "1"
julia = "1.5"

Expand Down

2 comments on commit e41a71a

@ericphanson
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/47759

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.4 -m "<description of version>" e41a71aced4049c275aa0719bcfc8f05ffcfb7c1
git push origin v0.1.4

Please sign in to comment.