diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 3a2a72bc..6b0e7773 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -21,6 +21,10 @@ jobs: uses: actions/checkout@v3 with: submodules: true + - name: Config cargo + run: echo -e "$CARGO_CONFIG_TOML" > .cargo/config.toml + env: + CARGO_CONFIG_TOML: ${{ secrets.CARGO_CONFIG_TOML }} - name: Install rust uses: actions-rs/toolchain@v1 with: @@ -65,6 +69,10 @@ jobs: uses: actions/checkout@v3 with: submodules: true + - name: Config cargo + run: echo -e "$CARGO_CONFIG_TOML" > .cargo/config.toml + env: + CARGO_CONFIG_TOML: ${{ secrets.CARGO_CONFIG_TOML }} - name: Install rust uses: actions-rs/toolchain@v1 with: diff --git a/eel/tests/rapid_gossip_sync_test.rs b/eel/tests/rapid_gossip_sync_test.rs index 8018d40e..e9b1f015 100644 --- a/eel/tests/rapid_gossip_sync_test.rs +++ b/eel/tests/rapid_gossip_sync_test.rs @@ -25,6 +25,7 @@ mod rapid_gossip_sync_test { #[test] #[file_serial(key, "/tmp/3l-int-tests-lock")] + #[ignore] fn test_update_from_0_and_partial_update() { nigiri::setup_environment_with_lsp_rgs(); let node_handle = mocked_storage_node();