Gitlab CI

GitLab CE Mirror | Please open new issues in our issue tracker on GitLab.com (by gitlabhq)

Gitlab CI Alternatives

Similar projects and alternatives to Gitlab CI

  1. Nextcloud

    ☁️ Nextcloud server, a safe home for all your data

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. Ghost

    331 Gitlab CI VS Ghost

    Independent technology for modern publishing, memberships, subscriptions and newsletters.

  4. Keycloak

    Open Source Identity and Access Management For Modern Applications and Services

  5. Jenkins

    193 Gitlab CI VS Jenkins

    Jenkins automation server

  6. Odoo

    166 Gitlab CI VS Odoo

    Odoo. Open Source Apps To Grow Your Business.

  7. Matomo

    Empowering People Ethically πŸš€ β€” Matomo is hiring! Join us β†’ https://matomo.org/jobs Matomo is the leading open-source alternative to Google Analytics, giving you complete control and built-in privacy. Easily collect, visualise, and analyse data from websites & apps. Star us on GitHub ⭐️ – Pull Requests welcome!

  8. Zulip

    135 Gitlab CI VS Zulip

    Zulip server and web application. Open-source team chat that helps teams stay productive and focused.

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. Rocket.Chat

    123 Gitlab CI VS Rocket.Chat

    The communications platform that puts data protection first.

  11. Wekan

    98 Gitlab CI VS Wekan

    The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://app.transifex.com/wekan/wekan only.

  12. Moodle

    86 Gitlab CI VS Moodle

    Moodle - the world's open source learning platform

  13. GoAccess

    GoAccess is a real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through your browser.

  14. OpenProject

    OpenProject is the leading open source project management software.

  15. Gogs

    71 Gitlab CI VS Gogs

    Gogs is a painless self-hosted Git service

  16. osTicket

    The osTicket open source ticketing system official project repository, for versions 1.8 and later

  17. Zammad

    54 Gitlab CI VS Zammad

    Zammad is a web based open source helpdesk/customer support system

  18. Redash

    41 Gitlab CI VS Redash

    Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.

  19. Mautic

    35 Gitlab CI VS Mautic

    Mautic: Open Source Marketing Automation Software.

  20. Joomla!

    Home of the Joomla! Content Management System

  21. DOLIBARR ERP & CRM

    Dolibarr ERP CRM is a modern software package to manage your company or foundation's activity (contacts, suppliers, invoices, orders, stocks, agenda, accounting, ...). it's an open source Web application (written in PHP) designed for businesses of any sizes, foundations and freelancers.

  22. OpenCart

    A free shopping cart system. OpenCart is an open source PHP-based online e-commerce solution.

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better Gitlab CI alternative or higher similarity.

Gitlab CI discussion

Log in or Post with
  1. User avatar
    combinatorist
    Β· about 1 year ago
    Β· Reply

    Review β˜…β˜…β˜…β˜…β˜… 10/10

    I love Gitlab CI/CD and pages. Gitlab.com is just loads better and years ahead of github and it's open source, so can self-host where and whenever you like.

Gitlab CI reviews and mentions

Posts with mentions or reviews of Gitlab CI. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-07-12.
  • How Elite Engg. Teams Deploy 208X More Frequently Compared to Us Mere Mortals?
    6 projects | dev.to | 12 Jul 2024
    GitLab: Another excellent CI/CD tool with robust monitoring and reporting features.
  • The 50 best open-source alternatives to popular SaaS software
    73 projects | dev.to | 10 Jul 2024
    GitHub: GitLab GitHub Repository
  • Gitlab Server Behind NGINX Reverse Proxy Manager Issue
    1 project | /r/homelab | 15 Jun 2023
    ## https://github.com/gitlabhq/gitlabhq/issues/694
  • Vue Options to Composition API Online Converter
    2 projects | dev.to | 24 May 2023
    // https://github.com/gitlabhq/gitlabhq/blob/e6d048d769240760008f0dbb6b811e1ebc675292/app/assets/javascripts/ide/components/repo_tab.vue#L3 import { GlIcon, GlTab } from '@gitlab/ui'; import { mapActions, mapGetters } from 'vuex'; import { __, sprintf } from '~/locale'; import ChangedFileIcon from '~/vue_shared/components/changed_file_icon.vue'; import FileIcon from '~/vue_shared/components/file_icon.vue'; import FileStatusIcon from './repo_file_status_icon.vue'; export default { components: { FileStatusIcon, FileIcon, GlIcon, ChangedFileIcon, GlTab, }, props: { tab: { type: Object, required: true, }, }, data() { return { tabMouseOver: false, }; }, computed: { ...mapGetters(['getUrlForPath']), closeLabel() { if (this.fileHasChanged) { return sprintf(__('%{tabname} changed'), { tabname: this.tab.name }); } return sprintf(__('Close %{tabname}'), { tabname: this.tab.name }); }, showChangedIcon() { if (this.tab.pending) return true; return this.fileHasChanged ? !this.tabMouseOver : false; }, fileHasChanged() { return this.tab.changed || this.tab.tempFile || this.tab.staged || this.tab.deleted; }, }, methods: { ...mapActions(['closeFile', 'updateDelayViewerUpdated', 'openPendingTab']), clickFile(tab) { if (tab.active) return; this.updateDelayViewerUpdated(true); if (tab.pending) { this.openPendingTab({ file: tab, keyPrefix: tab.staged ? 'staged' : 'unstaged' }); } else { this.$router.push(this.getUrlForPath(tab.path)); } }, mouseOverTab() { if (this.fileHasChanged) { this.tabMouseOver = true; } }, mouseOutTab() { if (this.fileHasChanged) { this.tabMouseOver = false; } }, }, };
  • Gitlab in a subdirectory with apache and passenger
    1 project | /r/codehunter | 13 Oct 2022
    In setting this up, I have followed the gitlab setup guide and the passenger documentation.
  • CircleCI Vs. GitLab: Choosing The Right CI/CD Tool
    1 project | dev.to | 15 Mar 2021
    Do you know G2 awards 4.4 stars to both GitLab & CircleCI? Just like GitHub stars, StackShares stack counts reflect the popularity of technology. CircleCI boasts around 7.4k stacks, while GitLab enjoys 31.1k stacks. Besides, GitLab as well as GitLab CI are open-source technologies and have garnered 22k+ stars on GitHub. Wait, this is not a reflection of how good GitLab is at CI/CD. These numbers reflect overall popularity. CircleCI is primarily β€œa niche-focused continuous integration tool” while GitLab wears multiple hats, including β€œversion control & code collaborator.”
  • A note from our sponsor - SaaSHub
    www.saashub.com | 13 Jul 2025
    SaaSHub helps you find the best software and product alternatives Learn more β†’

Stats

Basic Gitlab CI repo stats
6
24,026
9.9
3 days ago

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com