Skip to content

Latest commit

 

History

History
33 lines (31 loc) · 502 Bytes

.gitlab-ci.yml

File metadata and controls

33 lines (31 loc) · 502 Bytes
 
1
2
stages:
- build
11
12
13
14
- mkdir -p build
- cd build
- cmake ..
- make all iso VERBOSE=1
16
name: "$CI_BUILD_REF_NAME"
18
19
- build/pxkrnl
- build/phoenixos.iso
20
21
22
23
24
25
26
27
28
29
30
31
32
33
pages:
stage: docs
environment:
name: production
url: https://os.phoenix.dj
script:
- mkdocs build
artifacts:
paths:
- public
expire_in: 1h
only:
- master@phoenix/phoenix-os