commit
992710ba86
@ -0,0 +1,26 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: CI_Ohara
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: hub.codefirst.iut.uca.fr/marc.chevaldonne/codefirst-dotnet7-maui:latest
|
||||
commands:
|
||||
- cd Sources/
|
||||
- dotnet restore Ohara.sln
|
||||
- dotnet build Ohara.sln -c Release --no-restore /p:AndroidSdkDirectory=$ANDROID_SDK_ROOT -property:Aapt2ToolPath=$ANDROID_SDK_ROOT/build-tools/33.0.0
|
||||
- dotnet publish Ohara/Ohara.csproj -c Release --no-restore -o $CI_PROJECT_DIR/build/release -f:net7.0-android /p:AndroidSdkDirectory=/usr/lib/android-sdk
|
||||
|
||||
- name: tests
|
||||
image: mcr.microsoft.com/dotnet/sdk:7.0
|
||||
commands:
|
||||
- cd Sources/
|
||||
- dotnet restore Ohara.sln
|
||||
- dotnet test Ohara.sln --no-restore
|
||||
depends_on: [build]
|
||||
|
||||
|
@ -1,2 +1,61 @@
|
||||
# Ohara_MAUI
|
||||
Test
|
||||
```mermaid
|
||||
classDiagram
|
||||
class Bateau{
|
||||
-NomRomanise : string
|
||||
-PremierChap : int
|
||||
-PremierEp : int
|
||||
-Description : string
|
||||
-Caracteristique : string
|
||||
}
|
||||
|
||||
class Bestiaire {
|
||||
-Origine : string
|
||||
-Description : string
|
||||
-Caracteristique : string
|
||||
}
|
||||
|
||||
class Equipage {
|
||||
-NomRomanise : string
|
||||
-Region : string
|
||||
-PremierChap : int
|
||||
-PremierEp : int
|
||||
-Statut : bool
|
||||
-Description : string
|
||||
}
|
||||
|
||||
class FruitDuDemon {
|
||||
-NomRomanise : string
|
||||
-Type : string
|
||||
-PremierChap : int
|
||||
-PremierEp : int
|
||||
-Description : string
|
||||
-Forces : string
|
||||
-Faiblesses : string
|
||||
}
|
||||
|
||||
class Ile {
|
||||
-NomRomanise : string
|
||||
-Region : string
|
||||
-PremierChap : int
|
||||
-PremierEp : int
|
||||
-Description : string
|
||||
Geographie : string
|
||||
}
|
||||
|
||||
class Personnage {
|
||||
-Prime : double
|
||||
-Epithete : string
|
||||
-Age : int
|
||||
-Taille : double
|
||||
-Origine : string
|
||||
-Biographie : string
|
||||
-Citation : string
|
||||
}
|
||||
|
||||
class ObjetOhara {
|
||||
-Nom : string
|
||||
-Image : string?
|
||||
}
|
||||
```
|
||||
|
||||
|
Loading…
Reference in new issue