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: //opt/go/pkg/mod/github.com/gogo/[email protected]/.github/workflows/ci-workflow.yml
name: Continuous Integration
on:
  push:
    branches:
      - ghworkflow
  pull_request:
    branches:
      - master

jobs:
  build_and_test:
    name: go ${{ matrix.go_version }} - pb-${{ matrix.protobuf_version }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        go_version: [1.15.x, 1.12.x]
        protobuf_version: [3.14.0, 3.0.2, 2.6.1]
      fail-fast: false
    steps:
      - name: Checkout branch
        uses: actions/checkout@v1
        with:
          path: gopath/src/github.com/gogo/protobuf
          fetch-depth: 5

      - name: Setup go
        uses: actions/setup-go@v1
        with:
          go-version: ${{ matrix.go_version }}

      - name: Setup protoc
        env:
          PROTOBUF_VERSION: ${{ matrix.protobuf_version }}
        run: ./install-protobuf.sh

      - name: Protoc version
        run: PATH=$HOME/bin:$PATH protoc --version
      - name: env
        run: env && go env && pwd

      - name: Build server all
        run: GOPATH=/home/runner/work/protobuf/gopath GOBIN=$GOPATH/bin PATH=$HOME/bin:$GOBIN:$PATH make buildserverall

      - name: Diff check
        if: matrix.protobuf_version == '3.14.0' && matrix.go_version == '1.15.x'
        run: (! git status --porcelain | read || (git status; git diff; exit 1))