Skip to content

Commit

Permalink
Performance improvement on BufferedReader.seek (#1807)
Browse files Browse the repository at this point in the history
* Enable some test_io tests

* Fix _io.cs formatting

* Seek in buffer

* Fix failing tests

* Fix for .NET 9

* Disable tests on .NET

* Uses non-deprecated action

* Try to add os to package name

* Fix bug and remove truncate

* Use IsolationLevel=PROCESS

* Skip shutdown tests

* Disable some tests on Linux

* Skip signals tests

* Update github actions

* Set test verbosity to normal

* Disable test on Mono

* Disable some tests
  • Loading branch information
slozier authored Nov 17, 2024
1 parent 95e3048 commit 74ba84d
Show file tree
Hide file tree
Showing 11 changed files with 349 additions and 177 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ jobs:
- name: Install tools
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get -yq install mono-vbnc dos2unix
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1.x'
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Version Information
Expand All @@ -41,9 +41,9 @@ jobs:
run: pwsh make.ps1
- name: Package
run: pwsh make.ps1 package
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: packages
name: packages-${{ matrix.os }}
path: Package/Release/Packages
- name: Test (net462)
run: ./make.ps1 -frameworks net462 test-all
Expand Down
Loading

0 comments on commit 74ba84d

Please sign in to comment.