From 0df03ef0557ea54b98069ad856fec5351d2e8ba6 Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Thu, 16 Feb 2023 18:57:41 +0100 Subject: [PATCH] test(NODE-5035): skip oidc tests (#3573) --- .evergreen/config.yml | 20 ------------- .evergreen/generate_evergreen_tasks.js | 40 ++++++++++++++------------ 2 files changed, 21 insertions(+), 39 deletions(-) diff --git a/.evergreen/config.yml b/.evergreen/config.yml index d939768ba1..f1be682b28 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -1433,22 +1433,6 @@ tasks: commands: - func: install dependencies - func: run ldap tests - - name: test-auth-oidc - tags: - - latest - - replica_set - - oidc - commands: - - func: install dependencies - - func: bootstrap oidc - - func: bootstrap mongo-orchestration - vars: - VERSION: latest - TOPOLOGY: replica_set - AUTH: auth - ORCHESTRATION_FILE: auth-oidc.json - - func: setup oidc roles - - func: run oidc tests aws - name: test-socks5 tags: [] commands: @@ -3074,7 +3058,6 @@ buildvariants: - test-latest-load-balanced - test-auth-kerberos - test-auth-ldap - - test-auth-oidc - test-socks5 - test-socks5-csfle - test-socks5-tls @@ -3124,7 +3107,6 @@ buildvariants: - test-latest-load-balanced - test-auth-kerberos - test-auth-ldap - - test-auth-oidc - test-socks5 - test-socks5-csfle - test-socks5-tls @@ -3172,7 +3154,6 @@ buildvariants: - test-latest-load-balanced - test-auth-kerberos - test-auth-ldap - - test-auth-oidc - test-socks5 - test-socks5-csfle - test-socks5-tls @@ -3219,7 +3200,6 @@ buildvariants: - test-6.0-load-balanced - test-latest-load-balanced - test-auth-ldap - - test-auth-oidc - test-socks5-csfle - test-socks5-tls - test-tls-support-latest diff --git a/.evergreen/generate_evergreen_tasks.js b/.evergreen/generate_evergreen_tasks.js index 87093818de..4ab3e7e919 100644 --- a/.evergreen/generate_evergreen_tasks.js +++ b/.evergreen/generate_evergreen_tasks.js @@ -100,6 +100,27 @@ BASE_TASKS.push({ ] }); +// TODO(NODE-5035): Bring back when implementing. +// { +// name: 'test-auth-oidc', +// tags: ['latest', 'replica_set', 'oidc'], +// commands: [ +// { func: 'install dependencies' }, +// { func: 'bootstrap oidc' }, +// { +// func: 'bootstrap mongo-orchestration', +// vars: { +// VERSION: 'latest', +// TOPOLOGY: 'replica_set', +// AUTH: 'auth', +// ORCHESTRATION_FILE: 'auth-oidc.json' +// } +// }, +// { func: 'setup oidc roles' }, +// { func: 'run oidc tests aws' } +// ] +// } + // manually added tasks TASKS.push( ...[ @@ -183,25 +204,6 @@ TASKS.push( tags: ['auth', 'ldap'], commands: [{ func: 'install dependencies' }, { func: 'run ldap tests' }] }, - { - name: 'test-auth-oidc', - tags: ['latest', 'replica_set', 'oidc'], - commands: [ - { func: 'install dependencies' }, - { func: 'bootstrap oidc' }, - { - func: 'bootstrap mongo-orchestration', - vars: { - VERSION: 'latest', - TOPOLOGY: 'replica_set', - AUTH: 'auth', - ORCHESTRATION_FILE: 'auth-oidc.json' - } - }, - { func: 'setup oidc roles' }, - { func: 'run oidc tests aws' } - ] - }, { name: 'test-socks5', tags: [],