Merge pull request #1014 from edoapra/hotfix/release-7-2-0 #319
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: | |
fetch-depth: 1 | |
- name: pkg cleanup | |
run: | | |
ls -lrt | |
ls -lrt travis || true | |
./travis/pkg_cleanup.sh | |
shell: bash | |
- name: check | |
run: | | |
./travis/check_64_to_32.sh | |