ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //proc/thread-self/root/opt/go/pkg/mod/github.com/prometheus/[email protected]/.circleci/config.yml
---
version: 2.1

jobs:
  lint:
    docker:
    - image: cimg/go:1.22
    steps:
    - checkout
    - run: make check_license
    - run: ./scripts/check_build_tags.sh
    - run: make fixtures
    - run: make update_fixtures
    - run: make style
    - run: git diff --exit-code

  test:
    parameters:
      go_version:
        type: string
      os:
        type: string
      run_test:
        type: boolean
        default: true
    docker:
    - image: cimg/go:<< parameters.go_version >>
    environment:
      GOOS: "<< parameters.os >>"
    steps:
    - checkout
    - run: make lint
    - when:
        condition: << parameters.run_test >>
        steps:
        - run: make test

workflows:
  version: 2
  procfs:
    jobs:
    - lint
    - test:
        name: test-linux
        os: linux
        matrix:
          parameters:
            go_version:
            - "1.20"
            - "1.21"
            - "1.22"
    - test:
        name: test-windows
        os: windows
        run_test: false
        matrix:
          parameters:
            go_version:
            - "1.20"
            - "1.21"
            - "1.22"