Skip to content

Commit ed3039a

Browse files
committed
Windows builder: log environment, make sure caching succeeds once
1 parent ff6344e commit ed3039a

File tree

1 file changed

+41
-37
lines changed

1 file changed

+41
-37
lines changed

.github/workflows/Windows_x86-64.yml

Lines changed: 41 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252
unzip
5353
zip
5454
55+
- name: Log environment
56+
run: |
57+
env
58+
5559
- uses: actions/checkout@v4
5660
with:
5761
fetch-depth: 0
@@ -68,45 +72,45 @@ jobs:
6872
run: |
6973
build/env/setup
7074
71-
- name: Bootstrap
72-
if: hashFiles('fsbuild/bootstrap') != ''
73-
run: |
74-
build/env/shell fsbuild/bootstrap
75+
# - name: Bootstrap
76+
# if: hashFiles('fsbuild/bootstrap') != ''
77+
# run: |
78+
# build/env/shell fsbuild/bootstrap
7579

76-
- name: Configure
77-
if: hashFiles('fsbuild/configure') != ''
78-
run: |
79-
build/env/shell fsbuild/configure
80+
# - name: Configure
81+
# if: hashFiles('fsbuild/configure') != ''
82+
# run: |
83+
# build/env/shell fsbuild/configure
8084

81-
- name: Build
82-
run: |
83-
build/env/shell fsbuild/make
85+
# - name: Build
86+
# run: |
87+
# build/env/shell fsbuild/make
8488

85-
- name: Bundle
86-
run: |
87-
fsbuild/bundle
89+
# - name: Bundle
90+
# run: |
91+
# fsbuild/bundle
8892

89-
- name: Archive
90-
run: |
91-
fsbuild/archive
93+
# - name: Archive
94+
# run: |
95+
# fsbuild/archive
9296

93-
- uses: actions/upload-artifact@v4
94-
with:
95-
name: Windows_x86-64
96-
path: fsbuild/_dist/*
97-
98-
- name: Upload to Dropbox
99-
if: >-
100-
env.DROPBOX_REFRESH_TOKEN != null && (
101-
github.ref == 'refs/heads/beta' ||
102-
github.ref == 'refs/heads/dev' ||
103-
github.ref == 'refs/heads/main' ||
104-
github.ref == 'refs/heads/master' ||
105-
github.ref == 'refs/heads/stable' ||
106-
github.ref == 'refs/heads/test'
107-
)
108-
run: |
109-
python3 -m venv .venv
110-
source .venv/bin/activate
111-
python3 -m pip install dropbox==12.0.2
112-
fsbuild/upload
97+
# - uses: actions/upload-artifact@v4
98+
# with:
99+
# name: Windows_x86-64
100+
# path: fsbuild/_dist/*
101+
102+
# - name: Upload to Dropbox
103+
# if: >-
104+
# env.DROPBOX_REFRESH_TOKEN != null && (
105+
# github.ref == 'refs/heads/beta' ||
106+
# github.ref == 'refs/heads/fs-uae-3' ||
107+
# github.ref == 'refs/heads/main' ||
108+
# github.ref == 'refs/heads/master' ||
109+
# github.ref == 'refs/heads/stable' ||
110+
# github.ref == 'refs/heads/test'
111+
# )
112+
# run: |
113+
# python3 -m venv .venv
114+
# source .venv/bin/activate
115+
# python3 -m pip install dropbox==12.0.2
116+
# fsbuild/upload

0 commit comments

Comments
 (0)