Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

Commit bf4fd2e

Browse files
committed
bump lib-ruby-parser
1 parent c840cfc commit bf4fd2e

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
env:
1010
CARGO_TERM_COLOR: always
1111

12+
defaults:
13+
run:
14+
shell: bash
15+
1216
jobs:
1317
test:
1418
name: ${{ matrix.build.name }}
@@ -17,7 +21,6 @@ jobs:
1721
BUILD_ENV: debug
1822
TARGET: ${{ matrix.build.target }}
1923
CXX: ${{ matrix.build.cxx }}
20-
LD: ${{ matrix.build.ld }}
2124
AR: ${{ matrix.build.ar }}
2225
strategy:
2326
fail-fast: false
@@ -27,15 +30,13 @@ jobs:
2730
os: ubuntu-latest
2831
target: x86_64-unknown-linux-gnu
2932
cxx: clang++-12
30-
ld: ld.lld-12
3133
ar: llvm-ar-12
3234
run: make tests/run
3335

3436
- name: test on mac (clang)
3537
os: macos-latest
3638
target: x86_64-apple-darwin
3739
cxx: clang++
38-
ld: ld
3940
ar: ar
4041
run: |
4142
$CXX --version
@@ -45,15 +46,13 @@ jobs:
4546
os: windows-latest
4647
target: x86_64-pc-windows-msvc
4748
cxx: cl.exe
48-
ld: link.exe
4949
run: |
5050
make tests/run
5151
5252
- name: valgrind
5353
os: ubuntu-latest
5454
target: x86_64-unknown-linux-gnu
5555
cxx: clang++-12
56-
ld: ld.lld-12
5756
ar: llvm-ar-12
5857
run: |
5958
sudo apt-get update
@@ -65,7 +64,6 @@ jobs:
6564
os: ubuntu-latest
6665
target: x86_64-unknown-linux-gnu
6766
cxx: clang++-12
68-
ld: ld.lld-12
6967
ar: llvm-ar-12
7068
run: ASAN_OPTIONS=detect_leaks=1:alloc_dealloc_mismatch=0 CXXFLAGS="-fsanitize=address" make tests/run
7169

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ clean:
6363
rm -f *.$(O)
6464
rm -f *.$(A)
6565
rm -rf *.dSYM
66+
touch codegen/Cargo.toml
6667

6768
check:
6869
CC=$(CC) ruby assert_defs.rb bindings.hpp bindings.cpp bindings_messages.cpp bindings_nodes.cpp

benchmark/download_asset.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def abort(message)
77
end
88

99
asset_name = ENV.fetch('ASSET_NAME') { abort 'ASSET_NAME env var must be provided.' }
10-
asset_url = "https://github.com/lib-ruby-parser/bench/releases/download/v4.0.0+ruby-3.1.0/#{asset_name}"
10+
asset_url = "https://github.com/lib-ruby-parser/bench/releases/download/4.0.1+ruby-3.1.1/#{asset_name}"
1111
save_as = ENV.fetch('SAVE_AS') { abort 'SAVE_AS env var must be provided' }
1212

1313
File.open(save_as, 'wb') do |file|

ruby-parser-cpp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ default = []
1515
tests = []
1616

1717
[dependencies]
18-
lib-ruby-parser = {version = "4.0.0+ruby-3.1.0"}
18+
lib-ruby-parser = {version = "4.0.1+ruby-3.1.1"}
1919

2020
[profile.dev]
2121
panic = "abort"

0 commit comments

Comments
 (0)