-
Notifications
You must be signed in to change notification settings - Fork 31
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 #912 from JuliaRobotics/master
v0.13.5-rc1
- Loading branch information
Showing
20 changed files
with
503 additions
and
91 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
- develop | ||
- release** | ||
jobs: | ||
test: | ||
basic-functional: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.arch }} - ${{ matrix.group }} - ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
|
@@ -16,16 +16,14 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.6' | ||
- '1.7' | ||
- '1.8' | ||
- 'nightly' | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
- x64 | ||
group: | ||
- 'basic_functional_group' | ||
- 'test_cases_group' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
|
@@ -55,7 +53,53 @@ jobs: | |
with: | ||
file: lcov.info | ||
|
||
test-masters: | ||
test-cases: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.arch }} - ${{ matrix.group }} - ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
JULIA_PKG_SERVER: "" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.8' | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
- x64 | ||
group: | ||
- 'test_cases_group' | ||
continue-on-error: true | ||
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 }}- | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- run: | | ||
git config --global user.name Tester | ||
git config --global user.email [email protected] | ||
- uses: julia-actions/julia-runtest@latest | ||
continue-on-error: ${{ matrix.version == 'nightly' }} | ||
env: | ||
IIF_TEST_GROUP: ${{ matrix.group }} | ||
# - uses: julia-actions/julia-processcoverage@v1 | ||
# - uses: codecov/codecov-action@v1 | ||
# with: | ||
# file: lcov.info | ||
|
||
test-dev-main: | ||
#if: github.ref != 'refs/heads/release**' | ||
name: Upstream Dev | ||
runs-on: ubuntu-latest | ||
|
@@ -66,7 +110,7 @@ jobs: | |
|
||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: 1.7 | ||
version: 1.8 | ||
arch: x64 | ||
|
||
- uses: actions/cache@v1 | ||
|
@@ -107,7 +151,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: 1.7 | ||
version: 1.8 | ||
- name: 'Docs on ${{ github.head_ref }}' | ||
run: | | ||
export JULIA_PKG_SERVER="" | ||
|
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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
@info "Caesar._PCL is loading tools related to Gadfly.jl." | ||
|
||
# import ..Gadfly as GF | ||
|
||
## ===================================================================================== | ||
## _PCL plotting utils | ||
## ===================================================================================== | ||
|
||
# NOTE moved pointcloud plotting to and see PR Arena.jl#94 | ||
function plotPointCloud(pc::PointCloud) | ||
x = (s->s.data[1]).(pc.points) | ||
y = (s->s.data[2]).(pc.points) | ||
|
||
Main.Gadfly.plot(x=x,y=y, Main.Gadfly.Geom.point) | ||
end |
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 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
Oops, something went wrong.