Skip to content

Commit f4147a5

Browse files
committed
what's our working directory.
1 parent 7435ef4 commit f4147a5

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/builds.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Build GDExtension
22
on:
33
workflow_call:
44
push:
5-
tags:
6-
- v[0-9]+.[0-9]+.[0-9]+**
5+
# tags:
6+
# - v[0-9]+.[0-9]+.[0-9]+**
77

88
jobs:
99
build:
@@ -15,8 +15,8 @@ jobs:
1515
# See https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow
1616
target:
1717
[
18-
# { platform: linux, arch: x86_64, os: ubuntu-22.04 },
19-
{ platform: windows, arch: x86_64, os: windows-latest },
18+
{ platform: linux, arch: x86_64, os: ubuntu-22.04 },
19+
# { platform: windows, arch: x86_64, os: windows-latest },
2020
# { platform: windows, arch: x86_32, os: windows-latest }, # Ultralight does not support x32.
2121
# { platform: macos, arch: universal, os: macos-latest },
2222
# { platform: android, arch: arm64, os: ubuntu-22.04 },
@@ -68,11 +68,13 @@ jobs:
6868
with:
6969
path: ${{ github.workspace }}/.scons-cache/
7070
key: ${{ matrix.target.platform }}_${{ matrix.target.arch }}_${{ matrix.float-precision }}_${{ matrix.target-type }}_cache
71+
7172
- name: Build GDExtension Debug Build
7273
shell: sh
7374
env:
7475
SCONS_CACHE: ${{ github.workspace }}/.scons-cache/
7576
run: |
77+
pwd
7678
scons target=${{ matrix.target-type }} platform=${{ matrix.target.platform }} arch=${{ matrix.target.arch }} precision=${{ matrix.float-precision }}
7779
7880
# Sign the binary (macOS only)

0 commit comments

Comments
 (0)