Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
js-version: ['24']
r-version: ['4.5.1']
lua-version: ['latest'] # Note: unused since lua distribution manually downloaded
# go-version: ['1.24.5']
go-version: ['1.24.5']

steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -88,10 +88,10 @@ jobs:
run: |
cd ~/work/Microbenchmarks.jl/Microbenchmarks.jl/lua
./lua-install.sh
# - name: "Set up Go"
# uses: actions/setup-go@v5
# with:
# go-version: ${{ matrix.go-version }}
- name: "Set up Go"
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: "Run benchmark"
run: |
make gh_action_benchmarks.html
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ benchmarks/rust.csv: rust/src/main.rs rust/src/util.rs rust/Cargo.lock
cd rust
@for t in $(ITERATIONS); do cargo run --release -q; done >../$@

LANGUAGES = c fortran java javascript julia lua mathematica matlab octave python r rust
GH_ACTION_LANGUAGES = c fortran java javascript julia lua python r rust
LANGUAGES = c fortran go java javascript julia lua mathematica matlab octave python r rust
GH_ACTION_LANGUAGES = c fortran go java javascript julia lua python r rust

BENCHMARKS = $(foreach lang,$(LANGUAGES),benchmarks/$(lang).csv)
GH_ACTION_BENCHMARKS = $(foreach lang,$(GH_ACTION_LANGUAGES),benchmarks/$(lang).csv)
Expand Down
Loading