Skip to content

Commit 9123e9c

Browse files
committed
fix workflow for 64 bit build
1 parent c0efb1d commit 9123e9c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
exit(0) # exiting with '1' for some reason, so force proper exit
3030
3131
rust-64:
32-
name: Build 64 bit version and test it (don't both repeating for 32 bit version)
32+
name: Build 64 bit windows pyd file
3333
runs-on: windows-latest # needs to run on windows because of bzip2
3434
steps:
3535
- name: Checkout code
@@ -82,7 +82,7 @@ jobs:
8282
retention-days: 1
8383

8484
rust-32:
85-
name: build 32-bit pyd file and addon
85+
name: build addon (and 32-bit windows pyd file)
8686
needs: l10n
8787
runs-on: windows-latest # needs to run on windows because no 32-bit python on linux
8888
steps:
@@ -107,7 +107,7 @@ jobs:
107107
retention-days: 1
108108

109109
linux-64:
110-
name: Build 64 bit version
110+
name: Build linux pyd file (64-bit intel)
111111
runs-on: ubuntu-latest
112112
steps:
113113
- name: Checkout code
@@ -122,6 +122,9 @@ jobs:
122122
cargo build --target x86_64-unknown-linux-gnu --release
123123
- name: Setup Example dir
124124
run: |
125+
ls -l target
126+
ls -l target/target/x86_64-unknown-linux-gnu
127+
ls -l target/target/x86_64-unknown-linux-gnu/release
125128
cp target/x86_64-unknown-linux-gnu/release/libmathcat_py.dll Example/libmathcat_py.pyd
126129
cp -r addon/globalPlugins/MathCAT/Rules Example
127130
- name: test build

0 commit comments

Comments
 (0)