Skip to content

Commit

Permalink
ci: Rename cirrus.sh to more general ci.sh
Browse files Browse the repository at this point in the history
This makes sense in the process of moving stuff to GitHub Actions.
  • Loading branch information
hebasto committed Aug 18, 2023
1 parent d6281dd commit 87d35f3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ task:
- env:
CC: clang-snapshot
test_script:
- ./ci/cirrus.sh
- ./ci/ci.sh
<< : *CAT_LOGS

task:
Expand All @@ -111,7 +111,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:
Expand All @@ -130,7 +130,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:
Expand All @@ -150,7 +150,7 @@ task:
- env: {}
- env: {EXPERIMENTAL: yes, ASM: arm32}
test_script:
- ./ci/cirrus.sh
- ./ci/ci.sh
<< : *CAT_LOGS

task:
Expand All @@ -167,7 +167,7 @@ task:
ELLSWIFT: yes
CTIMETESTS: no
test_script:
- ./ci/cirrus.sh
- ./ci/ci.sh
<< : *CAT_LOGS

task:
Expand All @@ -184,7 +184,7 @@ task:
ELLSWIFT: yes
CTIMETESTS: no
test_script:
- ./ci/cirrus.sh
- ./ci/ci.sh
<< : *CAT_LOGS

# Sanitizers
Expand Down Expand Up @@ -228,7 +228,7 @@ task:
HOST: i686-linux-gnu
CC: i686-linux-gnu-gcc
test_script:
- ./ci/cirrus.sh
- ./ci/ci.sh
<< : *CAT_LOGS

# Memory sanitizers
Expand All @@ -255,7 +255,7 @@ task:
ECMULTWINDOW: 2
CFLAGS: "-fsanitize=memory -g -O3"
test_script:
- ./ci/cirrus.sh
- ./ci/ci.sh
<< : *CAT_LOGS

task:
Expand All @@ -271,7 +271,7 @@ task:
SCHNORRSIG: yes
ELLSWIFT: yes
test_script:
- ./ci/cirrus.sh
- ./ci/ci.sh
<< : *CAT_LOGS

task:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
tag: linux-debian-image
command: >
git config --global --add safe.directory ${{ github.workspace }} &&
./ci/cirrus.sh
./ci/ci.sh
- run: cat tests.log || true
if: ${{ always() }}
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
- name: CI script
env: ${{ matrix.env_vars }}
run: ./ci/cirrus.sh
run: ./ci/ci.sh

- run: cat tests.log || true
if: ${{ always() }}
Expand Down
File renamed without changes.

0 comments on commit 87d35f3

Please sign in to comment.