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

Add Time Series Block #239

Merged
merged 22 commits into from
Jul 29, 2022
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
58 changes: 58 additions & 0 deletions .github/workflows/ci-fastmakie.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI - FastMakie
on:
push:
paths-ignore:
- 'docs/**'
- 'FastTabular/**'
- 'FastText/**'
- 'FastVision/**'
- 'FastTimeSeries/**'
- '*.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Dev FastAI
run: |
julia --color=yes --project=./FastMakie -e 'using Pkg; pkg"dev ."'
shell: bash
- name: Dev test dependencies
run: |
julia --color=yes --project=./FastMakie/test -e 'using Pkg; pkg"dev . ./FastMakie "'
shell: bash
- uses: julia-actions/julia-buildpkg@latest
with:
project: './FastMakie/'
- name: Run tests
run: |
julia --color=yes --depwarn=yes --project=./FastMakie/test -e 'include("FastMakie/test/runtests.jl")'
continue-on-error: ${{ matrix.version == 'nightly' }}
shell: bash
57 changes: 57 additions & 0 deletions .github/workflows/ci-fasttabular.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: CI - FastTabular
on:
push:
paths-ignore:
- 'docs/**'
- 'FastMakie/**'
- 'FastText/**'
- 'FastVision/**'
- 'FastTimeSeries/**'
- '*.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
- macOS-latest
arch:
- x64

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Dev FastAI
run: |
julia --color=yes --project=./FastTabular -e 'using Pkg; pkg"dev ."'
shell: bash
- name: Dev test dependencies
run: |
julia --color=yes --project=./FastTabular/test -e 'using Pkg; pkg"dev . ./FastTabular "'
shell: bash
- uses: julia-actions/julia-buildpkg@latest
with:
project: './FastTabular/'
- name: Run tests
run: |
julia --color=yes --depwarn=yes --project=./FastTabular/test -e 'include("FastTabular/test/runtests.jl")'
continue-on-error: ${{ matrix.version == 'nightly' }}
shell: bash
58 changes: 58 additions & 0 deletions .github/workflows/ci-fasttext.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI - FastText
on:
push:
paths-ignore:
- 'docs/**'
- 'FastMakie/**'
- 'FastTabular/**'
- 'FastVision/**'
- 'FastTimeSeries/**'
- '*.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Dev FastAI
run: |
julia --color=yes --project=./FastText -e 'using Pkg; pkg"dev ."'
shell: bash
- name: Dev test dependencies
run: |
julia --color=yes --project=./FastText/test -e 'using Pkg; pkg"dev . ./FastText "'
shell: bash
- uses: julia-actions/julia-buildpkg@latest
with:
project: './FastText/'
- name: Run tests
run: |
julia --color=yes --depwarn=yes --project=./FastText/test -e 'include("FastText/test/runtests.jl")'
continue-on-error: ${{ matrix.version == 'nightly' }}
shell: bash
58 changes: 58 additions & 0 deletions .github/workflows/ci-fasttimeseries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: CI - FastTimeSeries
on:
push:
paths-ignore:
- 'docs/**'
- 'FastMakie/**'
- 'FastTabular/**'
- 'FastText/**'
- 'FastVision/**'
- '*.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Dev FastAI
run: |
julia --color=yes --project=./FastTimeSeries -e 'using Pkg; pkg"dev ."'
shell: bash
- name: Dev test dependencies
run: |
julia --color=yes --project=./FastTimeSeries/test -e 'using Pkg; pkg"dev . ./FastTimeSeries "'
shell: bash
- uses: julia-actions/julia-buildpkg@latest
with:
project: './FastTimeSeries/'
- name: Run tests
run: |
julia --color=yes --depwarn=yes --project=./FastTimeSeries/test -e 'include("FastTimeSeries/test/runtests.jl")'
continue-on-error: ${{ matrix.version == 'nightly' }}
shell: bash
62 changes: 62 additions & 0 deletions .github/workflows/ci-fastvision.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: CI - FastVision
on:
push:
paths-ignore:
- 'docs/**'
- 'FastTabular/**'
- 'FastText/**'
- 'FastTimeSeries/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- 'FastTabular/**'
- 'FastText/**'
- '*.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
- macOS-latest
arch:
- x64

steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- name: Dev FastAI
run: |
julia --color=yes --project=./FastVision -e 'using Pkg; pkg"dev ."'
shell: bash
- name: Dev test dependencies
run: |
julia --color=yes --project=./FastVision/test -e 'using Pkg; pkg"dev . ./FastVision ./FastMakie"'
shell: bash
- uses: julia-actions/julia-buildpkg@latest
with:
project: './FastVision/'
- name: Run tests
run: |
julia --color=yes --depwarn=yes --project=./FastVision/test -e 'include("FastVision/test/runtests.jl")'
continue-on-error: ${{ matrix.version == 'nightly' }}
shell: bash
18 changes: 16 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
name: CI
on:
- push
- pull_request
push:
paths-ignore:
- 'docs/**'
- 'FastMakie/**'
- 'FastVision/**'
- 'FastTabular/**'
- 'FastText/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- 'FastMakie/**'
- 'FastVision/**'
- 'FastTabular/**'
- 'FastText/**'
- '*.md'
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pollenbuild.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: pollenbuild
name: Documentation - Build

on:
push:
Expand All @@ -19,7 +19,7 @@ jobs:
version: '1.7'
- name: "Install package and docs dependencies"
run: |
julia --color=yes --project=./docs -e 'using Pkg; Pkg.add([Pkg.PackageSpec(path="."), Pkg.PackageSpec(url="https://github.com/c42f/JuliaSyntax.jl"), Pkg.PackageSpec(url="https://github.com/lorenzoh/ModuleInfo.jl"), Pkg.PackageSpec(url="https://github.com/lorenzoh/Pollen.jl", rev="main")]); Pkg.instantiate();'
julia --color=yes --project=./docs -e 'using Pkg; pkg"dev . ./FastVision ./FastMakie ./FastTabular https://github.com/c42f/JuliaSyntax.jl https://github.com/lorenzoh/ModuleInfo.jl https://github.com/lorenzoh/Pollen.jl"; Pkg.instantiate();'
- name: Build
run: |
julia --color=yes --project=./docs ./docs/make.jl ./pollen/dev/
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/pollenpr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Documentation - PR

on:
- pr

jobs:
pollen:
name: "Pollen - test documentation build"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
ref: pollen
path: pollen
- uses: julia-actions/setup-julia@latest
with:
version: '1.7'
- name: "Install package and docs dependencies"
run: |
julia --color=yes --project=./docs -e 'using Pkg; pkg"dev . ./FastVision ./FastMakie ./FastTabular https://github.com/c42f/JuliaSyntax.jl https://github.com/lorenzoh/ModuleInfo.jl https://github.com/lorenzoh/Pollen.jl"; Pkg.instantiate();'
- name: Build
run: |
julia --color=yes --project=./docs ./docs/make.jl ./pollen/dev/
- name: Deploy
run: |
cd pollen
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Build documentation data (Pollen.jl)"
git push

2 changes: 1 addition & 1 deletion .github/workflows/pollenstatic.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: pollenstatic
name: Documentation - Deploy

on:
push:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ test/Manifest.toml
docs/Manifest.toml
development/**
Manifest.toml
**/*.jld2
**/*.jld2
*.so