You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.9 KiB
107 lines
2.9 KiB
--- |
|
name: Validate Database |
|
|
|
on: |
|
pull_request: |
|
branches-ignore: |
|
- 'l10n_master' |
|
- 'gh-pages' |
|
paths: |
|
- 'src/Sql/**' |
|
- 'util/Migrator/**' |
|
push: |
|
branches: |
|
- 'master' |
|
- 'rc' |
|
paths: |
|
- 'src/Sql/**' |
|
- 'util/Migrator/**' |
|
workflow_dispatch: |
|
inputs: {} |
|
|
|
jobs: |
|
build: |
|
name: Build DACPAC |
|
runs-on: windows-2022 |
|
env: |
|
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages |
|
steps: |
|
- name: Set up dotnet |
|
uses: actions/setup-dotnet@9211491ffb35dd6a6657ca4f45d43dfe6e97c829 |
|
with: |
|
dotnet-version: '6.0.x' |
|
- name: Set up MSBuild |
|
uses: microsoft/setup-msbuild@ab534842b4bdf384b8aaf93765dc6f721d9f5fab |
|
|
|
- name: Print environment |
|
run: | |
|
dotnet --info |
|
msbuild -version |
|
nuget help | grep Version |
|
echo "GitHub ref: $GITHUB_REF" |
|
echo "GitHub event: $GITHUB_EVENT" |
|
|
|
- name: Checkout repo |
|
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 |
|
|
|
- name: Build DACPAC |
|
run: msbuild src/Sql/Sql.sqlproj /p:Configuration=Release /verbosity:minimal |
|
shell: pwsh |
|
|
|
- name: Upload DACPAC |
|
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 |
|
with: |
|
name: sql.dacpac |
|
path: src/Sql/bin/Release/Sql.dacpac |
|
|
|
validate: |
|
name: Validate |
|
runs-on: ubuntu-20.04 |
|
needs: build |
|
steps: |
|
- name: Checkout repo |
|
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 |
|
|
|
- name: Download dacpac |
|
uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 |
|
with: |
|
name: sql.dacpac |
|
|
|
- name: Docker Compose up |
|
working-directory: "dev" |
|
run: | |
|
cp .env.example .env |
|
docker compose --profile mssql up -d |
|
shell: pwsh |
|
|
|
- name: Migrate |
|
working-directory: "dev" |
|
run: "pwsh ./migrate.ps1" |
|
shell: pwsh |
|
|
|
- name: Diff sqlproj to migrations |
|
run: /usr/local/sqlpackage/sqlpackage /action:DeployReport /SourceFile:"Sql.dacpac" /TargetConnectionString:"Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True;" /OutputPath:"report.xml" /p:IgnoreColumnOrder=True /p:IgnoreComments=True |
|
shell: pwsh |
|
|
|
- name: Upload Report |
|
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 |
|
with: |
|
name: report.xml |
|
path: report.xml |
|
|
|
- name: Validate XML |
|
run: | |
|
if grep -q "<Operations>" "report.xml"; then |
|
echo |
|
echo "Migrations are out of sync with sqlproj!" |
|
exit 1 |
|
else |
|
echo "Report looks good" |
|
fi |
|
shell: bash |
|
|
|
- name: Docker compose down |
|
if: ${{ always() }} |
|
working-directory: "dev" |
|
run: docker compose down |
|
shell: pwsh
|
|
|