Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Move exporter and email optin jobs to new jenkins. #1694

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions dataeng/jobs/createJobs.groovy
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import static analytics.AggregateDailyTrackingLogs.job as AggregateDailyTrackingLogsJob
import static analytics.AnalyticsEmailOptin.job as AnalyticsEmailOptinJob
import static analytics.AnalyticsExporter.job as AnalyticsExporterJob
import static analytics.DatabaseExportCoursewareStudentmodule.job as DatabaseExportCoursewareStudentmoduleJob
import static analytics.Enrollment.job as EnrollmentJob
import static analytics.EnrollmentValidationEvents.job as EnrollmentValidationEventsJob
Expand Down Expand Up @@ -41,8 +39,6 @@ try {

def taskMap = [
AGGREGATE_DAILY_TRACKING_LOGS_JOB: AggregateDailyTrackingLogsJob,
ANALYTICS_EMAIL_OPTIN_JOB: AnalyticsEmailOptinJob,
ANALYTICS_EXPORTER_JOB: AnalyticsExporterJob,
DATABASE_EXPORT_COURSEWARE_STUDENTMODULE_JOB: DatabaseExportCoursewareStudentmoduleJob,
ENROLLMENT_JOB: EnrollmentJob,
ENROLLMENT_VALIDATION_EVENTS_JOB: EnrollmentValidationEventsJob,
Expand Down
4 changes: 4 additions & 0 deletions dataeng/jobs/createJobsNew.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import static analytics.AnalyticsEmailOptin.job as AnalyticsEmailOptinJob
import static analytics.AnalyticsExporter.job as AnalyticsExporterJob
import static analytics.DBTDocs.job as DBTDocsJob
import static analytics.DBTRun.job as DBTRunJob
import static analytics.DBTSourceFreshness.job as DBTSourceFreshnessJob
Expand Down Expand Up @@ -40,6 +42,8 @@ try {

def taskMap = [
// Add jobs here as they are ported from the old analytics Jenkins server.
ANALYTICS_EMAIL_OPTIN_JOB: AnalyticsEmailOptinJob,
ANALYTICS_EXPORTER_JOB: AnalyticsExporterJob,
DBT_DOCS_JOB: DBTDocsJob,
DBT_RUN_JOB: DBTRunJob,
DBT_SOURCE_FRESHNESS_JOB: DBTSourceFreshnessJob,
Expand Down