CI: Update scripts to fail fast (#2672)

This commit is contained in:
fzyzcjy
2024-12-31 11:04:01 +08:00
committed by GitHub
parent 21ec66e59e
commit f707470019
3 changed files with 7 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
#!/bin/bash
set -euxo pipefail
# Install the dependency in CI.
# Use repo from environment variable, passed from GitHub Actions

View File

@@ -1,3 +1,6 @@
#!/bin/bash
set -euxo pipefail
# these are required for actix
apt-get update
apt-get install -y libssl-dev pkg-config

View File

@@ -1,4 +1,5 @@
#!/bin/bash
set -euxo pipefail
# This script is used for release.
# It tags all remote branches starting with 'v' with the same name as the branch,