fixed time types #59
This file contains hidden or 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: build | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '9.0.x' | |
- name: Set env | |
run: | | |
echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" >> $GITHUB_ENV | |
echo "DOTNET_hostBuilder:reloadConfigOnChange=false" >> $GITHUB_ENV | |
- uses: dotnet/nbgv@master | |
id: nbgv | |
- name: Clean | |
run: | | |
dotnet clean ./SciSharp.MySQL.Replication.sln --configuration Release | |
dotnet nuget locals all --clear | |
- name: Build | |
run: dotnet build -c Debug | |
- name: Run MySQL | |
run: | | |
cp tests/Test/mysql.cnf ~/.my.cnf | |
sudo systemctl start mysql.service | |
mysql -V | |
mysql -e "SET PERSIST binlog_row_metadata = 'FULL';" -uroot -proot | |
mysql -uroot -proot < tests/Test/dump.sql | |
- name: Test | |
run: | | |
cd tests/Test | |
dotnet test | |
- name: Pack | |
run: dotnet pack -c Release -p:PackageVersion=${{ steps.nbgv.outputs.NuGetPackageVersion }}.${{ github.run_number }} -p:Version=${{ steps.nbgv.outputs.NuGetPackageVersion }}.${{ github.run_number }} -p:AssemblyVersion=${{ steps.nbgv.outputs.AssemblyVersion }} -p:AssemblyFileVersion=${{ steps.nbgv.outputs.AssemblyFileVersion }} -p:AssemblyInformationalVersion=${{ steps.nbgv.outputs.AssemblyInformationalVersion }} /p:NoPackageAnalysis=true | |
- name: Push | |
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.MYGET_API_KEY }} --source https://www.myget.org/F/scisharp/api/v3/index.json |