-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86a95a3
commit c9efe77
Showing
2 changed files
with
149 additions
and
53 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
nix-jobs-test: | ||
name: "Test nix jobs" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: "${{github.head_ref || github.ref_name}}" | ||
- name: Install Nix | ||
uses: cachix/install-nix-action@v27 | ||
with: | ||
extra_nix_config: | | ||
accept-flake-config = true | ||
experimental-features = fetch-closure flakes nix-command | ||
substituters = https://cache.iog.io https://cache.nixos.org/ | ||
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | ||
- name: Test | ||
run: | | ||
nix --version | ||
# Enable tracing | ||
export DEBUG="true" | ||
# Default base paths | ||
export GENESIS_DIR="workbench/custom" | ||
export KEY_DIR="workbench/envs/custom" | ||
export DATA_DIR="workbench/rundir" | ||
# Fake testing UTxOs | ||
export BYRON_UTXO='{"txin":"1e6f026dfa9aa3deb43a7a4c64d9e002d3224ce707e2a4bb45b0a93e465a4e20#0","address":"2657WMsDfac6yNxPyqZPCamHhH8pfYAaMgXFTxsag4n3ttWqVAz2gxRMomvJJMyF4","amount":30000000000000000}' | ||
export UTXO='{"txin":"cde023e0da05739ebcfeb7ab3ffaa467fa38fb508eddcc2c10a78bf06ff23f2b#0","address":"addr_test1vzyhu8wp6sx85dukujyuk0ltvqzjfx6vlpvwdf9dla9zg8qlez2ut","amount":30000000000000000}' | ||
# Other params | ||
export BYRON_SIGNING_KEY="$KEY_DIR/utxo-keys/shelley.000.skey" | ||
export ERA_CMD="alonzo" | ||
export MAJOR_VERSION="7" | ||
export PAYMENT_KEY="$KEY_DIR/utxo-keys/rich-utxo" | ||
export POOL_NAMES="sp-1 sp-2 sp-3" | ||
export STAKE_POOL_DIR="workbench/custom/groups/stake-pools" | ||
export SUBMIT_TX="false" | ||
export TESTNET_MAGIC="42" | ||
export UNSTABLE="false" | ||
export UNSTABLE_LIB="false" | ||
export USE_ENCRYPTION="false" | ||
export USE_DECRYPTION="false" | ||
export USE_NODE_CONFIG_BP="false" | ||
JOBS=( | ||
"job-gen-custom-node-config-data" | ||
"job-create-stake-pool-keys" | ||
"job-move-genesis-utxo" | ||
"job-register-stake-pools" | ||
"job-delegate-rewards-stake-key" | ||
"job-update-proposal-hard-fork" | ||
) | ||
RUN_TESTS() { | ||
echo "Running legacy nix job .#job-gen-custom-node-config" | ||
nix run .#job-gen-custom-node-config | ||
rm -rf workbench | ||
for i in ${JOBS[@]}; do | ||
echo "Running nix job .#$i" | ||
nix run ".#$i" | ||
done | ||
} | ||
echo | ||
echo "Run nix job tests with release versioning..." | ||
RUN_TESTS | ||
echo | ||
echo "Now run nix job tests again with pre-release versioning..." | ||
export UNSTABLE="true" | ||
export UNSTABLE_LIB="true" | ||
rm -rf workbench | ||
RUN_TESTS |
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