Skip to content

Commit d060d6c

Browse files
committed
wip
1 parent c5d7670 commit d060d6c

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/actions/podman-robot/action.yml

+1-10
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,6 @@ runs:
3939
run: |
4040
TIMESTAMP=202501111802
4141
echo "timestamp=${TIMESTAMP}" >> $GITHUB_OUTPUT
42-
- name: Prepare the Robot-Framework related PODs in background
43-
shell: bash
44-
run: |
45-
pushd .ci
46-
podman rm ci_webserver_1 ci_robot_1 -f
47-
./podman-compose.sh up --force-recreate --always-recreate-deps --build -d
48-
popd
4942
- name: Test
5043
shell: bash
5144
run: |
@@ -54,15 +47,13 @@ runs:
5447
echo "#!/bin/sh" > setup-env-local.sh
5548
echo "export TEST_BOARD_IP=${IP}" >> setup-env-local.sh
5649
echo "test_warning_detected=false" >> $GITHUB_ENV
57-
./run-tests.sh || {
50+
false || {
5851
MESSAGE="Failures were detected in the test results in ${{ inputs.bitbake_buildname }} for ${{ inputs.bitbake_target }} with ${{ inputs.bitbake_machine }}"
5952
echo "::warning file=.ci/run-tests.sh,title=Robot Framework tests::${MESSAGE}"
6053
echo "test_warning_detected=true" >> $GITHUB_ENV
6154
echo "test_warning_message=${MESSAGE}" >> $GITHUB_ENV
6255
echo "${{ inputs.github_token }}" > /tmp/GITHUB_TOKEN
6356
}
64-
TIMESTAMP=${{ steps.timestamp.outputs.timestamp }}
65-
s3cmd put -r -F tests_results/robot s3://yocto/${TIMESTAMP}-${{ inputs.bitbake_buildname }}/
6657
- name: Comment on the pull request if there is a warning
6758
if: env.test_warning_detected == 'true'
6859
uses: actions/github-script@v7

0 commit comments

Comments
 (0)