diff --git a/.github/workflows/infrstructure.yml b/.github/workflows/infrstructure.yml index ab93d46e2..0069101c6 100644 --- a/.github/workflows/infrstructure.yml +++ b/.github/workflows/infrstructure.yml @@ -136,9 +136,10 @@ jobs: - name: Configure Control Machine run: | - ANSIBLE_USER=$([ "${IS_MANUAL_DEPLOYMENT}" == "true" ] && echo "ubuntu" || echo "${USER}") + ANSIBLE_USER="${USER}" ANSIBLE_CONNECTION="ansible_connection=local" if [ "${IS_MANUAL_DEPLOYMENT}" == "true" ]; then + ANSIBLE_USER="ubuntu" ANSIBLE_CONNECTION="" export ANSIBLE_HOST_KEY_CHECKING=false @@ -166,7 +167,7 @@ jobs: exit 1 fi - if [ "${{ github.event.inputs.all_targets }}" == "false" ]; then + if [ "${IS_MANUAL_DEPLOYMENT}" == "false" ] || [ "${{ github.event.inputs.all_targets }}" == "false" ]; then STDOUT="$(echo "${STDOUT}" | awk -F 'stdout\\) ' '{print $2}')" OS="$(echo "${STDOUT}" | awk '{print $1}' | tr '[:upper:]' '[:lower:]')" ARCH="$(echo "${STDOUT}" | awk '{print $2}' | tr '[:upper:]' '[:lower:]')" diff --git a/infrastructure/nomad/playbooks/variables/profiles.yml b/infrastructure/nomad/playbooks/variables/profiles.yml index a0085605f..d72307e58 100644 --- a/infrastructure/nomad/playbooks/variables/profiles.yml +++ b/infrastructure/nomad/playbooks/variables/profiles.yml @@ -81,7 +81,6 @@ jobs: ip: 0.0.0.0 net_restrict: 0.0.0.0/0 type: signer - sync_mode: snap mev_commit_geth_member_node: &mev_commit_geth_member_node_job name: mev-commit-geth-member-node @@ -507,7 +506,6 @@ profiles: - *artifacts_job - *mev_commit_geth_bootnode1_job - *mev_commit_geth_signer_node1_job - - *mev_commit_geth_member_node_job - *contracts_deployer_job - *mev_commit_bootnode1_job - *mev_commit_provider_node1_job diff --git a/oracle/pkg/l1Listener/l1Listener_test.go b/oracle/pkg/l1Listener/l1Listener_test.go index 48da63cd2..db9e7b634 100644 --- a/oracle/pkg/l1Listener/l1Listener_test.go +++ b/oracle/pkg/l1Listener/l1Listener_test.go @@ -119,7 +119,7 @@ func TestL1Listener(t *testing.T) { }() select { - case <-time.After(5 * time.Second): + case <-time.After(10 * time.Second): t.Fatal("timeout waiting for winner", i) case winner := <-reg.winners: if winner.blockNum != int64(i) {