@@ -27,54 +27,56 @@ jobs:
2727 else {
2828 echo "TEST_FLAG=" | Out-File -FilePath $env:GITHUB_ENV -Append
2929 }
30+ - name : debug
31+ run : |
3032 echo "Environment: $env:TEST_FLAG"
3133
32- - name : Checkout repo
33- uses : actions/checkout@v4
34+ # - name: Checkout repo
35+ # uses: actions/checkout@v4
3436
35- - name : Install dependencies
36- run : |
37- python -m pip install --upgrade pip
38- pip install .[dev]
37+ # - name: Install dependencies
38+ # run: |
39+ # python -m pip install --upgrade pip
40+ # pip install .[dev]
3941
40- - name : Create CPython Grasshopper user objects
41- run : |
42- invoke build-cpython-ghuser-components
42+ # - name: Create CPython Grasshopper user objects
43+ # run: |
44+ # invoke build-cpython-ghuser-components
4345
44- - name : Create IronPython Grasshopper user objects
45- run : |
46- choco install ironpython --version=2.7.8.1
47- invoke clean
48- invoke build-ghuser-components
46+ # - name: Create IronPython Grasshopper user objects
47+ # run: |
48+ # choco install ironpython --version=2.7.8.1
49+ # invoke clean
50+ # invoke build-ghuser-components
4951
50- - name : Create Rhino7 Yak package
51- shell : pwsh
52- run : |
53- invoke yakerize -m $Env:YAK_TEMPLATE\manifest.yml -l $Env:YAK_TEMPLATE\icon.png -g $Env:USER_OBJECTS -t rh7
54- env :
55- USER_OBJECTS : src\compas_ghpython\components\ghuser
56- YAK_TEMPLATE : src\compas_ghpython\yak_template
52+ # - name: Create Rhino7 Yak package
53+ # shell: pwsh
54+ # run: |
55+ # invoke yakerize -m $Env:YAK_TEMPLATE\manifest.yml -l $Env:YAK_TEMPLATE\icon.png -g $Env:USER_OBJECTS -t rh7
56+ # env:
57+ # USER_OBJECTS: src\compas_ghpython\components\ghuser
58+ # YAK_TEMPLATE: src\compas_ghpython\yak_template
5759
58- - name : Publish to Yak test server (Rhino 7)
59- shell : pwsh
60- run : |
61- $file = Get-ChildItem -Path dist\yak_package\*rh7*.yak -File | Select-Object -ExpandProperty Name
62- invoke publish-yak $Env:TEST_FLAG -y dist\yak_package\$file
63- env :
64- YAK_TOKEN : ${{ secrets.YAK_DF_TOKEN }}
60+ # - name: Publish to Yak test server (Rhino 7)
61+ # shell: pwsh
62+ # run: |
63+ # $file = Get-ChildItem -Path dist\yak_package\*rh7*.yak -File | Select-Object -ExpandProperty Name
64+ # invoke publish-yak $Env:TEST_FLAG -y dist\yak_package\$file
65+ # env:
66+ # YAK_TOKEN: ${{ secrets.YAK_DF_TOKEN }}
6567
66- - name : Create Rhino8 Yak package
67- shell : pwsh
68- run : |
69- invoke yakerize -m $Env:YAK_TEMPLATE\manifest.yml -l $Env:YAK_TEMPLATE\icon.png -g $Env:USER_OBJECTS -t rh8
70- env :
71- USER_OBJECTS : src\compas_ghpython\components_cpython\ghuser
72- YAK_TEMPLATE : src\compas_ghpython\yak_template
68+ # - name: Create Rhino8 Yak package
69+ # shell: pwsh
70+ # run: |
71+ # invoke yakerize -m $Env:YAK_TEMPLATE\manifest.yml -l $Env:YAK_TEMPLATE\icon.png -g $Env:USER_OBJECTS -t rh8
72+ # env:
73+ # USER_OBJECTS: src\compas_ghpython\components_cpython\ghuser
74+ # YAK_TEMPLATE: src\compas_ghpython\yak_template
7375
74- - name : Publish to Yak test server (Rhino 8)
75- shell : pwsh
76- run : |
77- $file = Get-ChildItem -Path dist\yak_package\*rh8*.yak -File | Select-Object -ExpandProperty Name
78- invoke publish-yak $Env:TEST_FLAG -y dist\yak_package\$file
79- env :
80- YAK_TOKEN : ${{ secrets.YAK_DF_TOKEN }}
76+ # - name: Publish to Yak test server (Rhino 8)
77+ # shell: pwsh
78+ # run: |
79+ # $file = Get-ChildItem -Path dist\yak_package\*rh8*.yak -File | Select-Object -ExpandProperty Name
80+ # invoke publish-yak $Env:TEST_FLAG -y dist\yak_package\$file
81+ # env:
82+ # YAK_TOKEN: ${{ secrets.YAK_DF_TOKEN }}
0 commit comments