This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 027b668fb Run slow GHA job check only as part of a nightly build.
027b668fb is described below

commit 027b668fb7d0d919d9cb3ad8c7b2fa8ec7b21472
Author: Tomaz Muraus <[email protected]>
AuthorDate: Mon Sep 5 22:34:00 2022 +0200

    Run slow GHA job check only as part of a nightly build.
---
 .github/workflows/main.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a10fb0fc3..0d89ccd9c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -226,8 +226,10 @@ jobs:
           docker build -f contrib/Dockerfile -t libcloud_runtest_img .
 
       - name: Verify Image Works
+        # This step runs checks under various Python versions and it's slow so
+        # we only run it on nightly basis
+        if: ${{ github.event.schedule == '0 1 * * *' }}
         run: |
-          # TODO: Only run it on daily basis since this check is slow
           docker run libcloud_runtest_img
 
   security_checks:

Reply via email to