Skip to content

Commit f0f30fd

Browse files
committed
Updated CI for Rails 8-1-stable branch
1 parent dfdb318 commit f0f30fd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ RUN curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/t
2525
RUN mkdir -p /tmp/activerecord-sqlserver-adapter
2626
COPY Gemfile VERSION activerecord-sqlserver-adapter.gemspec /tmp/activerecord-sqlserver-adapter/
2727
RUN cd /tmp/activerecord-sqlserver-adapter \
28-
&& RAILS_BRANCH=main bundle install \
28+
&& RAILS_BRANCH=8-1-stable bundle install \
2929
&& rm -rf /tmp/activerecord-sqlserver-adapter
3030
RUN chown -R vscode:vscode /usr/local/rvm

Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ WORKDIR $WORKDIR
99

1010
COPY . $WORKDIR
1111

12-
RUN RAILS_BRANCH=main bundle install --jobs `expr $(cat /proc/cpuinfo | grep -c "cpu cores") - 1` --retry 3
12+
RUN RAILS_BRANCH=8-1-stable bundle install --jobs `expr $(cat /proc/cpuinfo | grep -c "cpu cores") - 1` --retry 3
1313

1414
CMD ["sh"]

activerecord-sqlserver-adapter.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
2626
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
2727
spec.require_paths = ["lib"]
2828

29-
spec.add_dependency "activerecord", "~> 8.1.0.beta1"
29+
spec.add_dependency "activerecord", "~> 8.1.0.rc1"
3030
spec.add_dependency "tiny_tds", "~> 3.0"
3131
end

compose.ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
ci:
55
environment:
66
- ACTIVERECORD_UNITTEST_HOST=sqlserver
7-
- RAILS_BRANCH=main
7+
- RAILS_BRANCH=8-1-stable
88
build:
99
context: .
1010
dockerfile: Dockerfile.ci
@@ -13,7 +13,7 @@ services:
1313
- "sqlserver"
1414
standardrb:
1515
environment:
16-
- RAILS_BRANCH=main
16+
- RAILS_BRANCH=8-1-stable
1717
build:
1818
context: .
1919
dockerfile: Dockerfile.ci

0 commit comments

Comments
 (0)