Skip to content

Commit

Permalink
update: add --cpu to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
skyleaworlder committed Aug 17, 2023
1 parent 7f4eec5 commit e2e9bce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/Benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
name: Install dependencies
if: ${{ steps.restore-cache.outputs.cache-matched-key == '' }}
run: |
julia --project=benchmark benchmark/runbenchmarks.jl --cache-setup --target=$TARGET_URL --baseline=$BASELINE_URL
julia --project=benchmark benchmark/runbenchmarks.jl --cache-setup \
--arch=cpu \
--target=$TARGET_URL --baseline=$BASELINE_URL
-
uses: actions/cache/save@v3
if: ${{ steps.restore-cache.outputs.cache-matched-key == '' }}
Expand Down Expand Up @@ -107,6 +109,7 @@ jobs:
name: Run benchmark
run: |
julia --project=benchmark benchmark/runbenchmarks.jl --pr \
--arch=cpu \
--target=$TARGET_URL --baseline=$BASELINE_URL \
--enable="${{ matrix.bm }}" \
--fetch-result
Expand Down Expand Up @@ -142,6 +145,7 @@ jobs:
name: Merge reports
run: |
julia --project=benchmark benchmark/runbenchmarks.jl --merge-reports \
--arch=cpu \
--target=$TARGET_URL --baseline=$BASELINE_URL \
--push-result --push-password=${{ github.token }}
-
Expand Down

0 comments on commit e2e9bce

Please sign in to comment.