more testing
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Successful in 1m20s
Details
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Successful in 1m20s
Details
This commit is contained in:
parent
c65cf3a804
commit
36487d1b75
|
@ -16,12 +16,14 @@ jobs:
|
||||||
|
|
||||||
- name: Checkout TGC-COMPLIANCE
|
- name: Checkout TGC-COMPLIANCE
|
||||||
run: |
|
run: |
|
||||||
|
exit 0
|
||||||
echo "${{ secrets.ACTRUNNER_PRIVATE_SSHKEY }}" > ssh_key
|
echo "${{ secrets.ACTRUNNER_PRIVATE_SSHKEY }}" > ssh_key
|
||||||
chmod 600 ssh_key
|
chmod 600 ssh_key
|
||||||
git clone --recursive -c core.sshCommand="/usr/bin/ssh -i ssh_key -o StrictHostKeyChecking=accept-new" ssh://git@git.minres.com:2221/TGFS/TGC-COMPLIANCE.git
|
git clone --recursive -c core.sshCommand="/usr/bin/ssh -i ssh_key -o StrictHostKeyChecking=accept-new" ssh://git@git.minres.com:2221/TGFS/TGC-COMPLIANCE.git
|
||||||
|
|
||||||
- name: Build tgc-sim executable
|
- name: Build tgc-sim executable
|
||||||
run: |
|
run: |
|
||||||
|
exit 0
|
||||||
conan profile new --detect --force default
|
conan profile new --detect --force default
|
||||||
cmake -S TGC-ISS -B TGC-ISS/build -DCMAKE_BUILD_TYPE=Debug -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF
|
cmake -S TGC-ISS -B TGC-ISS/build -DCMAKE_BUILD_TYPE=Debug -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF
|
||||||
cmake --build TGC-ISS/build -j24
|
cmake --build TGC-ISS/build -j24
|
||||||
|
@ -59,8 +61,8 @@ jobs:
|
||||||
- name: Indicate Failure
|
- name: Indicate Failure
|
||||||
run: |
|
run: |
|
||||||
echo ${{ failure() }}
|
echo ${{ failure() }}
|
||||||
|
echo ${{steps.*.outcome}}
|
||||||
echo "Failure detected"
|
echo "Failure detected"
|
||||||
exit ${{ failure() }}
|
|
||||||
|
|
||||||
- name: Indicate Failure 2
|
- name: Indicate Failure 2
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
|
@ -69,3 +71,7 @@ jobs:
|
||||||
- name: Indicate Failure 3
|
- name: Indicate Failure 3
|
||||||
if: steps.tcc.outcome != 'success'
|
if: steps.tcc.outcome != 'success'
|
||||||
run: echo "Failure detected"
|
run: echo "Failure detected"
|
||||||
|
|
||||||
|
- name: Indicate Failure 4
|
||||||
|
if: steps.*.outcome != 'success'
|
||||||
|
run: echo "Failure detected"
|
Loading…
Reference in New Issue