From 0e683d55cb7f288d05824e1f01c7a54041db29d1 Mon Sep 17 00:00:00 2001 From: Vasily Romanov Date: Sat, 14 Dec 2024 21:18:23 +0300 Subject: [PATCH] only default tests --- .github/workflows/easyjson.yml | 56 +++++++++++++++++----------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/easyjson.yml b/.github/workflows/easyjson.yml index 14a193e..9d9bc79 100644 --- a/.github/workflows/easyjson.yml +++ b/.github/workflows/easyjson.yml @@ -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 \ No newline at end of file + # 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 \ No newline at end of file