Skip to content

Commit

Permalink
Various CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Oct 13, 2024
1 parent 9c5bb29 commit 97651ad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Passenger generic binaries CI

env:
ENTERPRISE: 0
FORCE_COLOR: 1
RUST_LOG_STYLE: always

Expand Down Expand Up @@ -188,7 +187,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: binaries-macos-${{ matrix.arch }}
path: 'output/**/*'
path: packaging/binaries/macos/output/**/*


- name: Package binaries
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/debian.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Passenger Debian packaging tests

env:
ENTERPRISE: 0
FORCE_COLOR: 1
RUST_LOG_STYLE: always

on:
push: {}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/rpm.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Passenger RPM packaging tests

env:
ENTERPRISE: 0
FORCE_COLOR: 1
RUST_LOG_STYLE: always

on:
push: {}
Expand Down
4 changes: 2 additions & 2 deletions test/integration_tests/nginx_tests.rb
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def rename_entrypoint_file
PhusionPassenger.on_event(:oob_work) do
f = File.open("#{@stub.full_app_root}/oob_work.\#{$$}", 'w')
f.close
sleep 1
sleep 3
end
app = lambda do |env|
if env['PATH_INFO'] == '/oobw'
Expand All @@ -515,7 +515,7 @@ def rename_entrypoint_file
t0 = Time.now
get("/oobw")
secs = Time.now - t0
secs.should <= 0.1
secs.should <= 0.5
end
end

Expand Down

0 comments on commit 97651ad

Please sign in to comment.