From e4eab8e9e9fe8856e23314496e26299afb25fbaa Mon Sep 17 00:00:00 2001 From: panticmilos Date: Tue, 6 Dec 2022 15:00:07 +0100 Subject: [PATCH] Remove test version of version yaml architectures --- .github/workflows/versions.yml | 128 --------------------------------- 1 file changed, 128 deletions(-) diff --git a/.github/workflows/versions.yml b/.github/workflows/versions.yml index 64ebffc..1291b08 100644 --- a/.github/workflows/versions.yml +++ b/.github/workflows/versions.yml @@ -42,134 +42,6 @@ jobs: - name: Verify Go run: go version - stable_arm64: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: stable - architecture: arm64 - - name: Verify Go - run: go version - - oldstable_arm64: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: oldstable - architecture: arm64 - - name: Verify Go - run: go version - - stable_x64: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: stable - architecture: x64 - - name: Verify Go - run: go version - - oldstable_x64: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: oldstable - architecture: x64 - - name: Verify Go - run: go version - - stable_arm32: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: stable - architecture: arm - - name: Verify Go - run: go version - - oldstable_arm32: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: oldstable - architecture: arm - - name: Verify Go - run: go version - - stable_x86: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: stable - architecture: x86 - - name: Verify Go - run: go version - - oldstable_x86: - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - steps: - - uses: actions/checkout@v3 - - name: Setup Go and check latest - uses: ./ - with: - go-version: oldstable - architecture: x86 - - name: Verify Go - run: go version - local-cache: name: Setup local-cache version runs-on: ${{ matrix.os }}