Commit b5d2143 1 parent 42de9f2 commit b5d2143 Copy full SHA for b5d2143
File tree 1 file changed +6
-10
lines changed
1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -92,21 +92,17 @@ jobs:
92
92
emmake make -j $(nproc)
93
93
emmake make install
94
94
95
- - name : Check out flint
96
- if : steps.cache-wasm-library-dir.outputs.cache-hit != 'true'
97
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
98
- with :
99
- repository : flintlib/flint
100
- path : flint
101
-
102
95
- name : Build flint
103
96
if : steps.cache-wasm-library-dir.outputs.cache-hit != 'true'
104
97
env :
105
98
CFLAGS : " -fPIC"
106
99
WASM_LIBRARY_DIR : ${{ github.workspace }}/wasm-library-dir
107
- working-directory : flint
108
100
run : |
109
- ./bootstrap.sh
101
+ curl -L https://github.com/flintlib/flint/releases/download/v3.2.0-rc1/flint-3.2.0-rc1.tar.xz -o flint-3.2.0-rc1.tar.xz
102
+ tar -xf flint-3.2.0-rc1.tar.xz
103
+
104
+ cd flint-3.2.0-rc1
105
+
110
106
emconfigure ./configure \
111
107
--disable-dependency-tracking \
112
108
--disable-shared \
@@ -141,7 +137,7 @@ jobs:
141
137
pkg-config --modversion mpfr
142
138
pkg-config --modversion flint
143
139
144
- pyodide build -C "setup-args=-Dflint_version_check=false"
140
+ pyodide build -C
145
141
146
142
- name : Set up Pyodide virtual environment and test python-flint
147
143
run : |
You can’t perform that action at this time.
0 commit comments