This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gitlab-rails runner -e production "puts Gitlab::CurrentSettings.current_application_settings.runners_registration_token" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:20.04 | |
| WORKDIR /app | |
| RUN apt clean && rm -rf /var/lib/apt/lists/* && apt update -o Acquire::CompressionTypes::Order::=gz | |
| RUN apt -y install wget build-essential tar gcc | |
| RUN wget https://dl.xpdfreader.com/old/xpdf-3.02.tar.gz | |
| RUN tar -xvzf xpdf-3.02.tar.gz | |
| RUN cd xpdf-3.02 && \ | |
| ./configure --prefix="/app/fuzzing_xpdf/install/" && \ | |
| make && \ | |
| make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include "libexif/exif-data.h" | |
| // Function to log messages | |
| void log_message(const char *msg) { | |
| printf("%s\n", msg); | |
| } | |
| // Function to print an Exif entry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| manifest: | |
| version: 1.0 | |
| automations: | |
| linearb_ai_description: | |
| # Triggers only when PR is created or has new commits, see docs | |
| # https://docs.gitstream.cm/execution-model/#action-level-execution-control | |
| # Skip description for Draft PRs and PRs from bots | |
| if: | |
| - {{ not pr.draft }} |
OlderNewer