File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010
1111jobs :
1212 Build :
13- runs-on : self-hosted
13+ runs-on : [ self-hosted, vm ]
1414 if : ${{ github.actor != 'dependabot[bot]' }}
1515 strategy :
1616 fail-fast : true
1717 steps :
1818 - uses : actions/checkout@v6
19+ with :
20+ fetch-depth : 50
1921 - name : Build Exordos Core
2022 env :
2123 PUSH_CFG : ${{ secrets.PUSH_CFG }}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ __pycache__/
2020.Python
2121build /
2222output /
23+ _tmp * /
2324develop-eggs /
2425dist /
2526deps /
Original file line number Diff line number Diff line change 4242
4343LOG = logging .getLogger (__name__ )
4444USER = "ubuntu"
45- GCTL_CFG_DIR = f"/home/{ USER } /.genesis "
45+ GCTL_CFG_DIR = f"/home/{ USER } /.exordos "
4646SPEC_PATH = "/mnt/cdrom/spec.json"
4747MANIFEST_PATH = "/mnt/cdrom/core.yaml"
4848ECOSYSTEM_REALM_MANIFEST_PATH = "/mnt/cdrom/ecosystem_realm.yaml"
Original file line number Diff line number Diff line change @@ -144,25 +144,21 @@ class Manifest(
144144 )
145145 requirements = properties .property (
146146 ra_types .Dict (),
147- read_only = True ,
148147 mutable = True ,
149148 default = dict ,
150149 )
151150 resources = properties .property (
152151 ra_types .Dict (),
153- read_only = True ,
154152 mutable = True ,
155153 default = dict ,
156154 )
157155 exports = properties .property (
158156 ra_types .Dict (),
159- read_only = True ,
160157 mutable = True ,
161158 default = dict ,
162159 )
163160 imports = properties .property (
164161 ra_types .Dict (),
165- read_only = True ,
166162 mutable = True ,
167163 default = dict ,
168164 )
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ GC_PATH="/opt/exordos_core"
2424GC_CFG_DIR=/etc/exordos_core
2525GC_ART_DIR=" $GC_PATH /artifacts"
2626VENV_PATH=" $GC_PATH /.venv"
27- BOOTSTRAP_PATH=" /var/lib/genesis /bootstrap/scripts"
27+ BOOTSTRAP_PATH=" /var/lib/exordos /bootstrap/scripts"
2828
2929PG_VERSION=" 18"
3030GC_PG_USER=" exordos_core"
@@ -248,6 +248,6 @@ cat <<EOT | sudo tee /etc/motd
248248Welcome to Exordos Core virtual machine!
249249
250250All materials can be found here:
251- https://github.com/infraguys
251+ https://github.com/exordos
252252
253253EOT
You can’t perform that action at this time.
0 commit comments