Skip to content

Commit

Permalink
Fix windows, restrict to Julia 1.7, and remove 32-bit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Oct 7, 2023
1 parent 7da9922 commit c94ff32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 50 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- '1.7'
- '1' # automatically expands to the latest stable 1.x release of Julia
- nightly
os:
Expand All @@ -24,10 +24,6 @@ jobs:
- windows-latest
arch:
- x64
include:
- os: windows-latest
version: '1'
arch: x86
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand Down
40 changes: 0 additions & 40 deletions .github/workflows/invalidations.yml

This file was deleted.

9 changes: 4 additions & 5 deletions test/client.jl
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,10 @@
@test isok(HTTP2.post("https://$httpbin/post"; body=UInt8['h','e','y']))
io = IOBuffer("hey"); seekstart(io)
@test isok(HTTP2.post("https://$httpbin/post"; body=io))
tmp = tempname()
open(f->write(f, "hey"), tmp, "w")
io = open(tmp)
@test isok(HTTP2.post("https://$httpbin/post"; body=io))
close(io); rm(tmp)
mktemp() do (path, io)
write(io, "hey"); seekstart(io)
@test isok(HTTP2.post("https://$httpbin/post"; body=io))
end
f = Base.BufferStream()
write(f, "hey")
close(f)
Expand Down

0 comments on commit c94ff32

Please sign in to comment.