Commit 391c5ae0 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

git: Add README, gitlab-ci and gitignore.

No related merge requests found
Pipeline #55570 failed
Showing with 119 additions and 0 deletions
+119 -0
.gitignore 0 → 100644
# Created by https://www.toptal.com/developers/gitignore/api/emacs
# Edit at https://www.toptal.com/developers/gitignore?templates=emacs
### Emacs ###
# -*- mode: gitignore; -*-
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
# Org-mode
.org-id-locations
*_archive
# flymake-mode
*_flymake.*
# eshell files
/eshell/history
/eshell/lastdir
# elpa packages
/elpa/
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
# directory configuration
.dir-locals.el
# network security
/network-security.data
# End of https://www.toptal.com/developers/gitignore/api/emacs
stages:
- build
- lightening
- scratching
- archive
- release
build:
stage: build
tags:
- linux
script:
- cd cpython
- ./configure --enable-optimizations --with-lto --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=install --with-computed-gotos --prefix=$(pwd)/../dist/
- make -j18
- make install
artifacts:
paths:
- dist/
# HACK: Get some system libraries to make python more portable
scratching:
stage: scratching
tags:
- linux
script:
- echo OK
needs:
- job: build
artifacts: true
artifacts:
paths:
- dist/
# HACK: Delete some useless python modules
lightening:
stage: lightening
tags:
- linux
script:
- echo OK
needs:
- job: scratching
artifacts: true
artifacts:
paths:
- dist/
archive:
stage: archive
tags:
- linux
script:
- mv dist python
- tar cf python.tar.xz python/
needs:
- job: lightening
artifacts: true
artifacts:
paths:
- python.tar.xz
README.org 0 → 100644
#+TITLE: Custom python build for Pamhyr distribution
Python version: =3.10=
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment