From 716a009568dbb60aeb61b237bcf167c769c0a569 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Tue, 15 Aug 2023 20:52:08 +0100 Subject: [PATCH] ci: Rename `cirrus.sh` to more general `ci.sh` This makes sense in the process of moving stuff to GitHub Actions. --- .cirrus.yml | 20 ++++++++++---------- .github/workflows/ci.yml | 4 ++-- ci/{cirrus.sh => ci.sh} | 0 3 files changed, 12 insertions(+), 12 deletions(-) rename ci/{cirrus.sh => ci.sh} (100%) diff --git a/.cirrus.yml b/.cirrus.yml index 31e5155d97..fdd07c17f5 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -93,7 +93,7 @@ task: - env: CC: clang-snapshot test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS task: @@ -110,7 +110,7 @@ task: - env: CC: clang --target=i686-pc-linux-gnu -isystem /usr/i686-linux-gnu/include test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS task: @@ -139,7 +139,7 @@ task: brew_script: - brew install automake libtool gcc test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS << : *CREDITS @@ -159,7 +159,7 @@ task: test_script: # https://sourceware.org/bugzilla/show_bug.cgi?id=27008 - rm /etc/ld.so.cache - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS task: @@ -179,7 +179,7 @@ task: - env: {} - env: {EXPERIMENTAL: yes, ASM: arm32} test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS task: @@ -196,7 +196,7 @@ task: ELLSWIFT: yes CTIMETESTS: no test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS task: @@ -213,7 +213,7 @@ task: ELLSWIFT: yes CTIMETESTS: no test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS # Sanitizers @@ -257,7 +257,7 @@ task: HOST: i686-linux-gnu CC: i686-linux-gnu-gcc test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS # Memory sanitizers @@ -283,7 +283,7 @@ task: ECMULTWINDOW: 2 CFLAGS: "-fsanitize=memory -g -O3" test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS task: @@ -299,7 +299,7 @@ task: SCHNORRSIG: yes ELLSWIFT: yes test_script: - - ./ci/cirrus.sh + - ./ci/ci.sh << : *CAT_LOGS task: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb92e22397..838eef68a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: tag: linux-debian-wine-image command: > git config --global --add safe.directory ${{ github.workspace }} && - ./ci/cirrus.sh + ./ci/ci.sh - run: cat tests.log || true if: ${{ always() }} @@ -174,7 +174,7 @@ jobs: tag: linux-debian-wine-image command: > git config --global --add safe.directory ${{ github.workspace }} && - ./ci/cirrus.sh + ./ci/ci.sh - run: cat tests.log || true if: ${{ always() }} diff --git a/ci/cirrus.sh b/ci/ci.sh similarity index 100% rename from ci/cirrus.sh rename to ci/ci.sh