From 7d8c8e756fef7b2e1ae7f3951f09c5467fdbbaf2 Mon Sep 17 00:00:00 2001 From: edoapra Date: Tue, 24 Oct 2023 23:15:00 -0700 Subject: [PATCH] check 64_to_32 conversion action --- .github/workflows/check_64_to_32.yml | 37 ++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/check_64_to_32.yml diff --git a/.github/workflows/check_64_to_32.yml b/.github/workflows/check_64_to_32.yml new file mode 100644 index 0000000000..27e2bcb260 --- /dev/null +++ b/.github/workflows/check_64_to_32.yml @@ -0,0 +1,37 @@ +name: check_64_to_32 + +on: + push: + paths-ignore: + - .gitlab-ci.yml + pull_request: + release: + schedule: + - cron: '0 0 * * SUN' + repository_dispatch: + types: [backend_automation] + workflow_dispatch: +jobs: + check: + if: | + github.event_name == 'schedule' || + (!contains(github.event.head_commit.message, 'ci skip')) + runs-on: ubuntu + steps: + - name: pkg cleanup + run: | + ./travis/pkg_cleanup.sh + shell: bash + - name: Checkout code + uses: actions/checkout@v4 + with: + show-progress: + fetch-depth: 200 + - name: check + run: | + ./travis/check_64_to_32.sh + + + + +