Skip to content

Commit

Permalink
fix attempt 2
Browse files Browse the repository at this point in the history
  • Loading branch information
LexLuthr committed Jun 25, 2024
1 parent 13f2a70 commit 6b9c09c
Showing 1 changed file with 10 additions and 19 deletions.
29 changes: 10 additions & 19 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev hwloc
- name: Sync submodules
run: git submodule sync
- name: Update submodules
Expand All @@ -46,14 +46,6 @@ jobs:
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
- name: Run boostci
run: make boostci
- name: Restore parameters cache
Expand Down Expand Up @@ -102,7 +94,7 @@ jobs:

test:
runs-on: ubuntu-latest
# needs: [install-deps, prepare, download-params]
needs: [install-deps, prepare, download-params]
strategy:
matrix:
test-suite:
Expand All @@ -111,7 +103,6 @@ jobs:
- itest-graphsync_identity_cid
- itest-retrieval
- itest-direct_deal
- all
- itest-data-segment-index
- itest-ipni
- itest-multiminer-graphsync
Expand All @@ -126,7 +117,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev hwloc
- name: Download parameters
uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -177,7 +168,7 @@ jobs:

lint:
runs-on: ubuntu-latest
needs: install-deps
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -193,7 +184,7 @@ jobs:
gofmt:
runs-on: ubuntu-latest
needs: install-deps
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -210,7 +201,7 @@ jobs:

cbor-check:
runs-on: ubuntu-latest
needs: install-deps
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -230,7 +221,7 @@ jobs:

docs-check:
runs-on: ubuntu-latest
needs: install-deps
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -248,7 +239,7 @@ jobs:

gen-check:
runs-on: ubuntu-latest
needs: install-deps
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand Down Expand Up @@ -278,7 +269,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev hwloc
- name: Download parameters
uses: actions/download-artifact@v2
with:
Expand All @@ -302,7 +293,7 @@ jobs:
mod-tidy-check:
runs-on: ubuntu-latest
needs: install-deps
needs: [install-deps, prepare]
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand Down

0 comments on commit 6b9c09c

Please sign in to comment.