correct conditional syntax
parent
9e2007562a
commit
99e3a111e1
|
@ -85,7 +85,7 @@ jobs:
|
||||||
bash .github/scripts/unix.sh -t
|
bash .github/scripts/unix.sh -t
|
||||||
- name: Upload build directory
|
- name: Upload build directory
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: ${{ matrix.build_type }} == "Release"
|
if: ${{ matrix.build_type == "Release" }}
|
||||||
with:
|
with:
|
||||||
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
||||||
path: ${{ github.workspace }}/build/
|
path: ${{ github.workspace }}/build/
|
||||||
|
|
|
@ -53,7 +53,7 @@ jobs:
|
||||||
bash .github/scripts/unix.sh -t
|
bash .github/scripts/unix.sh -t
|
||||||
- name: Upload build directory
|
- name: Upload build directory
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: ${{ matrix.build_type }} == "Release"
|
if: ${{ matrix.build_type == "Release" }}
|
||||||
with:
|
with:
|
||||||
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
||||||
path: ${{ github.workspace }}/build/
|
path: ${{ github.workspace }}/build/
|
||||||
|
|
|
@ -78,7 +78,7 @@ jobs:
|
||||||
cmake --build build --config ${{ matrix.build_type }} --target check.linear
|
cmake --build build --config ${{ matrix.build_type }} --target check.linear
|
||||||
- name: Upload build directory
|
- name: Upload build directory
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
if: ${{ matrix.build_type }} == "Release"
|
if: ${{ matrix.build_type == "Release" }}
|
||||||
with:
|
with:
|
||||||
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
|
||||||
path: ${{ github.workspace }}/build/
|
path: ${{ github.workspace }}/build/
|
||||||
|
|
Loading…
Reference in New Issue