Skip to content

Commit

Permalink
fix: unsupported targets for parquet
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienaury committed Sep 29, 2024
1 parent 70569f7 commit e32e952
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
7 changes: 5 additions & 2 deletions pkg/parquet/parquet.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
// You should have received a copy of the GNU General Public License
// along with PIMO. If not, see <http://www.gnu.org/licenses/>.

//go:build !wasi && !wasm
// +build !wasi,!wasm
//go:build !wasm && !wasi && !(linux && 386) && !(windows && 386)
// +build !wasm
// +build !wasi
// +build !linux !386
// +build !windows !386

package parquet

Expand Down
4 changes: 2 additions & 2 deletions pkg/parquet/parquet_wasm.go → pkg/parquet/parquet_dummy.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
// You should have received a copy of the GNU General Public License
// along with PIMO. If not, see <http://www.gnu.org/licenses/>.

//go:build wasi || wasm
// +build wasi wasm
//go:build wasm || wasi || (linux && 386) || (windows && 386)
// +build wasm wasi linux,386 windows,386

package parquet

Expand Down
7 changes: 5 additions & 2 deletions pkg/parquet/parquet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
// You should have received a copy of the GNU General Public License
// along with PIMO. If not, see <http://www.gnu.org/licenses/>.

//go:build !wasi && !wasm
// +build !wasi,!wasm
//go:build !wasm && !wasi && !(linux && 386) && !(windows && 386)
// +build !wasm
// +build !wasi
// +build !linux !386
// +build !windows !386

package parquet

Expand Down

0 comments on commit e32e952

Please sign in to comment.