Complete O_flags used for file open (#1853) #2713
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest-large] | |
steps: | |
- name: Install tools | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get -yq install mono-vbnc dos2unix | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup .NET 6.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Setup .NET 8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Setup .NET 9.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.0.x' | |
- name: Version Information | |
run: | | |
dotnet --info | |
try { msbuild -version } catch { } | |
try { mono --version } catch { } | |
shell: pwsh | |
- name: Build | |
run: pwsh make.ps1 | |
- name: Package | |
run: pwsh make.ps1 package | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: packages-${{ matrix.os }} | |
path: Package/Release/Packages | |
- name: Test (net462) | |
run: ./make.ps1 -frameworks net462 test-all | |
shell: pwsh | |
- name: Test (net6.0) | |
run: ./make.ps1 -frameworks net6.0 test-all | |
shell: pwsh | |
- name: Test (net8.0) | |
run: ./make.ps1 -frameworks net8.0 test-all | |
shell: pwsh |