IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Parcourir la source

Started working on the Gitea example

tags/0.92
Stanislaw Adaszewski il y a 4 ans
Parent
révision
4d62947707
4 fichiers modifiés avec 17 ajouts et 0 suppressions
  1. +2
    -0
      .gitignore
  2. +0
    -0
      example/dummy/Fockerfile
  3. +0
    -0
      example/dummy/focker-compose.yml
  4. +15
    -0
      example/gitea/Fockerfile

+ 2
- 0
.gitignore Voir le fichier

@@ -2,3 +2,5 @@ __pycache__
/build/
/dist/
/MANIFEST
/change_author.sh
/mymailmap

example/Fockerfile → example/dummy/Fockerfile Voir le fichier


example/focker-compose.yml → example/dummy/focker-compose.yml Voir le fichier


+ 15
- 0
example/gitea/Fockerfile Voir le fichier

@@ -0,0 +1,15 @@
base: freebsd-latest
steps:
- run:
- pkg install -y gmake go node npm
- run:
- fetch https://github.com/go-gitea/gitea/releases/download/v1.11.4/gitea-src-1.11.4.tar.gz
- mkdir gitea-build
- cd gitea-build
- tar -zvxf ../gitea-src-1.11.4.tar.gz
- run:
- cd gitea-build
- TAGS="sqlite sqlite_unlock_notify pam" gmake build
- run:
- pkg install git

Chargement…
Annuler
Enregistrer