[Option][WIP] Profile pic rounding #583
This file contains 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
name: Linux. | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
- 'kotatogram_changes.txt' | |
- 'changelog.txt' | |
- 'LEGAL' | |
- 'LICENSE' | |
- '.github/**' | |
- '!.github/workflows/linux.yml' | |
- 'snap/**' | |
- 'Telegram/build/**' | |
- 'Telegram/Resources/uwp/**' | |
- 'Telegram/Resources/winrc/**' | |
- 'Telegram/SourceFiles/platform/win/**' | |
- 'Telegram/SourceFiles/platform/mac/**' | |
- 'Telegram/Telegram/**' | |
- 'Telegram/configure.bat' | |
- 'Telegram/Telegram.plist' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
- 'kotatogram_changes.txt' | |
- 'changelog.txt' | |
- 'LEGAL' | |
- 'LICENSE' | |
- '.github/**' | |
- '!.github/workflows/linux.yml' | |
- 'snap/**' | |
- 'Telegram/build/**' | |
- 'Telegram/Resources/uwp/**' | |
- 'Telegram/Resources/winrc/**' | |
- 'Telegram/SourceFiles/platform/win/**' | |
- 'Telegram/SourceFiles/platform/mac/**' | |
- 'Telegram/Telegram/**' | |
- 'Telegram/configure.bat' | |
- 'Telegram/Telegram.plist' | |
jobs: | |
linux: | |
name: Rocky Linux 8 | |
if: > | |
!(github.event_name == 'push' | |
&& contains(github.event.head_commit.message, '[skip ci]')) | |
&& !(github.event_name == 'pull_request' | |
&& github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
defines: | |
- "" | |
#- "DESKTOP_APP_DISABLE_X11_INTEGRATION" | |
#- "DESKTOP_APP_DISABLE_WAYLAND_INTEGRATION" | |
env: | |
UPLOAD_ARTIFACT: "false" | |
steps: | |
- name: Get repository name. | |
run: echo "REPO_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV | |
- name: Clone. | |
uses: actions/[email protected] | |
with: | |
submodules: recursive | |
path: ${{ env.REPO_NAME }} | |
- name: First set up. | |
run: | | |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
docker pull ghcr.io/$GITHUB_REPOSITORY/centos_env | |
docker tag ghcr.io/$GITHUB_REPOSITORY/centos_env tdesktop:centos_env | |
- name: Kotatogram Desktop build. | |
run: | | |
cd $REPO_NAME | |
DEFINE="" | |
if [ -n "${{ matrix.defines }}" ]; then | |
DEFINE="-D ${{ matrix.defines }}=ON" | |
echo Define from matrix: $DEFINE | |
echo "ARTIFACT_NAME=Kotatogram_${{ matrix.defines }}" >> $GITHUB_ENV | |
else | |
echo "ARTIFACT_NAME=Kotatogram" >> $GITHUB_ENV | |
fi | |
docker run --rm \ | |
-v $PWD:/usr/src/tdesktop \ | |
-e CONFIG=Debug \ | |
tdesktop:centos_env \ | |
/usr/src/tdesktop/Telegram/build/docker/centos_env/build.sh \ | |
-D CMAKE_C_FLAGS_DEBUG="" \ | |
-D CMAKE_CXX_FLAGS_DEBUG="" \ | |
-D CMAKE_C_FLAGS="-Werror" \ | |
-D CMAKE_CXX_FLAGS="-Werror" \ | |
-D CMAKE_EXE_LINKER_FLAGS="-s" \ | |
-D TDESKTOP_API_TEST=ON \ | |
-D DESKTOP_APP_DISABLE_AUTOUPDATE=OFF \ | |
-D DESKTOP_APP_DISABLE_CRASH_REPORTS=OFF \ | |
$DEFINE | |
- name: Check. | |
run: | | |
filePath="$REPO_NAME/out/Debug/Kotatogram" | |
if test -f "$filePath"; then | |
echo "Build successfully done! :)" | |
size=$(stat -c %s "$filePath") | |
echo "File size of ${filePath}: ${size} Bytes." | |
else | |
echo "Build error, output file does not exist." | |
exit 1 | |
fi | |
- name: Move artifact. | |
if: env.UPLOAD_ARTIFACT == 'true' | |
run: | | |
cd $REPO_NAME/out/Debug | |
mkdir artifact | |
mv {Kotatogram,Updater} artifact/ | |
- uses: actions/upload-artifact@master | |
if: env.UPLOAD_ARTIFACT == 'true' | |
name: Upload artifact. | |
with: | |
name: ${{ env.ARTIFACT_NAME }} | |
path: ${{ env.REPO_NAME }}/out/Debug/artifact/ |