Skip to content

Commit

Permalink
Improved bash scripts + changed naming in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
phklive committed Mar 29, 2024
1 parent 0b073db commit 8113178
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
unit-and-integration:
name: unit and integration tests stable on ubuntu-latest
name: test stable on ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
Expand Down
5 changes: 5 additions & 0 deletions miden-client.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[rpc]
endpoint = { protocol = "http", host = "localhost", port = 57291 }

[store]
database_filepath = "store.sqlite3"
2 changes: 1 addition & 1 deletion scripts/check-rust-version.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Check rust-toolchain file
TOOLCHAIN_VERSION=$(cat rust-toolchain)
Expand Down
5 changes: 4 additions & 1 deletion scripts/test-end-to-end.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/bin/bash
#!/usr/bin/env bash

set -o errexit # Exit on error
set -o pipefail # The script fails if any command in a pipeline fails

# Create miden-client.toml file
# Needed for the Miden client to work properly
Expand Down

0 comments on commit 8113178

Please sign in to comment.