Merge pull request #602 from borglab/feature/actions-publish
Publish GTSAM artifacts on Github Actionsrelease/4.3a0
commit
c957478da1
|
@ -83,3 +83,9 @@ jobs:
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: |
|
run: |
|
||||||
bash .github/scripts/unix.sh -t
|
bash .github/scripts/unix.sh -t
|
||||||
|
- name: Upload build directory
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: matrix.build_type == 'Release'
|
||||||
|
with:
|
||||||
|
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
||||||
|
path: ${{ github.workspace }}/build/
|
||||||
|
|
|
@ -51,3 +51,9 @@ jobs:
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
run: |
|
run: |
|
||||||
bash .github/scripts/unix.sh -t
|
bash .github/scripts/unix.sh -t
|
||||||
|
- name: Upload build directory
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: matrix.build_type == 'Release'
|
||||||
|
with:
|
||||||
|
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
||||||
|
path: ${{ github.workspace }}/build/
|
||||||
|
|
|
@ -76,3 +76,9 @@ jobs:
|
||||||
cmake --build build --config ${{ matrix.build_type }} --target check.base
|
cmake --build build --config ${{ matrix.build_type }} --target check.base
|
||||||
cmake --build build --config ${{ matrix.build_type }} --target check.base_unstable
|
cmake --build build --config ${{ matrix.build_type }} --target check.base_unstable
|
||||||
cmake --build build --config ${{ matrix.build_type }} --target check.linear
|
cmake --build build --config ${{ matrix.build_type }} --target check.linear
|
||||||
|
- name: Upload build directory
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: matrix.build_type == 'Release'
|
||||||
|
with:
|
||||||
|
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
||||||
|
path: ${{ github.workspace }}/build/
|
||||||
|
|
Loading…
Reference in New Issue