mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-02-01 11:34:59 +01:00
13 lines
305 B
Bash
Executable File
13 lines
305 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# test.sh
|
|
# Copyright (C) 2024 Kovid Goyal <kovid at kovidgoyal.net>
|
|
#
|
|
# Distributed under terms of the MIT license.
|
|
#
|
|
|
|
echo -e "\x1b[32mtesting amd64\x1b[m" && go test -v &&
|
|
echo -e "\x1b[32mtesting arm64\x1b[m" && GOARCH=arm64 go test -c && qemu-aarch64-static simdstring.test -test.v
|
|
|
|
|