Skip to content

Commit

Permalink
only default tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasily Romanov committed Dec 14, 2024
1 parent 8ef38d7 commit 0e683d5
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/easyjson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,31 +33,31 @@ jobs:
- name: Build and Run tests
run: make

test-arm64:
runs-on: ubuntu-latest
name: Test on ${{ matrix.distro }} ${{ matrix.arch }}
strategy:
matrix:
include:
- arch: arm64
distro: ubuntu24.04
steps:
- uses: actions/checkout@v2
- uses: uraimo/run-on-arch-action@master
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
install: |
apt-get update
apt install -y curl wget make gcc
latestGo=$(curl "https://golang.org/VERSION?m=text")
wget --quiet "https://dl.google.com/go/${latestGo}.linux-${{ matrix.arch }}.tar.gz"
rm -f $(which go)
rm -rf /usr/local/go
tar -C /usr/local -xzf "${latestGo}.linux-${{ matrix.arch }}.tar.gz"
run: |
export PATH=/usr/local/go/bin:$PATH
export PATH=~/go/bin:$PATH
printf "Go Version: $(go version)\n"
go install golang.org/x/lint/golint@latest
make
# test-arm64:
# runs-on: ubuntu-latest
# name: Test on ${{ matrix.distro }} ${{ matrix.arch }}
# strategy:
# matrix:
# include:
# - arch: arm64
# distro: ubuntu24.04
# steps:
# - uses: actions/checkout@v2
# - uses: uraimo/run-on-arch-action@master
# with:
# arch: ${{ matrix.arch }}
# distro: ${{ matrix.distro }}
# install: |
# apt-get update
# apt install -y curl wget make gcc
# latestGo=$(curl "https://golang.org/VERSION?m=text")
# wget --quiet "https://dl.google.com/go/${latestGo}.linux-${{ matrix.arch }}.tar.gz"
# rm -f $(which go)
# rm -rf /usr/local/go
# tar -C /usr/local -xzf "${latestGo}.linux-${{ matrix.arch }}.tar.gz"
# run: |
# export PATH=/usr/local/go/bin:$PATH
# export PATH=~/go/bin:$PATH
# printf "Go Version: $(go version)\n"
# go install golang.org/x/lint/golint@latest
# make

0 comments on commit 0e683d5

Please sign in to comment.