spec/lib/release_tools/internal_release/release_spec.rb [122:173]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        without_dry_run do
          release.execute
        end
      end

      it 'triggers a pipeline on Dev Omnibus' do
        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/omnibus-gitlab',
            omnibus_pipeline_variables,
            branch: '16-1-stable'
          )

        without_dry_run do
          release.execute
        end
      end

      it 'triggers EE, UBI, and FIPS pipelines on Dev CNG/Images' do
        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/charts/components/images',
            cng_ee_pipeline_variables,
            branch: '16-1-stable'
          )

        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/charts/components/images',
            cng_ubi_pipeline_variables,
            branch: '16-1-stable'
          )

        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/charts/components/images',
            cng_fips_pipeline_variables,
            branch: '16-1-stable'
          )

        without_dry_run do
          release.execute
        end
      end

      it 'records the release metadata' do
        expect(ReleaseTools::InternalRelease::Metadata)
          .to receive(:new)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/internal_release/release_spec.rb [235:286]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        without_dry_run do
          release.execute
        end
      end

      it 'triggers a pipeline on Dev Omnibus' do
        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/omnibus-gitlab',
            omnibus_pipeline_variables,
            branch: '16-1-stable'
          )

        without_dry_run do
          release.execute
        end
      end

      it 'triggers EE, UBI, and FIPS pipelines on Dev CNG/Images' do
        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/charts/components/images',
            cng_ee_pipeline_variables,
            branch: '16-1-stable'
          )

        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/charts/components/images',
            cng_ubi_pipeline_variables,
            branch: '16-1-stable'
          )

        expect(dev_client)
          .to receive(:create_pipeline)
          .with(
            'gitlab/charts/components/images',
            cng_fips_pipeline_variables,
            branch: '16-1-stable'
          )

        without_dry_run do
          release.execute
        end
      end

      it 'records the release metadata' do
        expect(ReleaseTools::InternalRelease::Metadata)
          .to receive(:new)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



