From 0da39dcfe3ae3d60c35804190a3f06d346e99821 Mon Sep 17 00:00:00 2001 From: Alessio Date: Fri, 21 Feb 2025 14:13:17 -0800 Subject: [PATCH] Remove condition for integration test for gitea build --- .gitea/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index e242b13..81b0fce 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -45,14 +45,14 @@ jobs: env: # This could be anything, it's just a temp file SESSION_FILE_PATH: /tmp/Offline_Twatter.session - if: | - contains(join(github.event.head_commit.modified, ','), 'cmd/') || - contains(join(github.event.head_commit.added, ','), 'cmd/') || - contains(join(github.event.head_commit.removed, ','), 'cmd/') - contains(join(github.event.head_commit.modified, ','), 'pkg/scraper/') || - contains(join(github.event.head_commit.added, ','), 'pkg/scraper/') || - contains(join(github.event.head_commit.removed, ','), 'pkg/scraper/') || - startsWith(github.ref, 'refs/tags/v') + # if: | + # contains(join(github.event.head_commit.modified, ','), 'cmd/') || + # contains(join(github.event.head_commit.added, ','), 'cmd/') || + # contains(join(github.event.head_commit.removed, ','), 'cmd/') + # contains(join(github.event.head_commit.modified, ','), 'pkg/scraper/') || + # contains(join(github.event.head_commit.added, ','), 'pkg/scraper/') || + # contains(join(github.event.head_commit.removed, ','), 'pkg/scraper/') || + # startsWith(github.ref, 'refs/tags/v') # Write the session file contents to a temp location so it can be used in the tests run: | cd cmd