upload build directory after workflow completes
parent
1b89482164
commit
f2bfdbd317
|
@ -82,4 +82,9 @@ jobs:
|
||||||
- name: Build and Test (Linux)
|
- name: Build and Test (Linux)
|
||||||
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
|
||||||
|
with:
|
||||||
|
name: gtsam-${{ matrix.name }}
|
||||||
|
path: $GITHUB_WORKSPACE/build/
|
||||||
|
|
|
@ -51,3 +51,8 @@ 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
|
||||||
|
with:
|
||||||
|
name: gtsam-${{ matrix.name }}
|
||||||
|
path: $GITHUB_WORKSPACE/build/
|
||||||
|
|
Loading…
Reference in New Issue