Skip to content

Commit

Permalink
[AppVeyor] Fix for construct formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 3, 2020
1 parent 7ae5c77 commit 280be9e
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
version: 1.0.0-{build}

for:
-
matrix:
only:
- image: Visual Studio 2019
init:
- SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\Program Files\PostgreSQL\12\bin\;%PATH%
build_script:
- net start postgresql-x64-12
- createdb harmonbot
- echo CREATE USER harmonbot SUPERUSER PASSWORD :'pgpassword' | psql --variable=pgpassword="%PGPASSWORD%"
-
matrix:
only:
- image: Ubuntu
stack: PostgreSQL 12.1, Python 3.8.1
build_script:
- sudo --user=postgres createdb harmonbot
- sudo --user=postgres psql --variable=pgpassword="$PGPASSWORD" <<< "CREATE USER harmonbot SUPERUSER PASSWORD :'pgpassword'"
-
matrix:
only:
- image: macos
stack: Python 3.8.1
-
matrix:
only:
- image: Visual Studio 2019
init:
- SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\Program Files\PostgreSQL\12\bin\;%PATH%
build_script:
- net start postgresql-x64-12
- createdb harmonbot
- echo CREATE USER harmonbot SUPERUSER PASSWORD :'pgpassword' | psql --variable=pgpassword="%PGPASSWORD%"
-
matrix:
only:
- image: Ubuntu
stack: PostgreSQL 12.1, Python 3.8.1
build_script:
- sudo --user=postgres createdb harmonbot
- sudo --user=postgres psql --variable=pgpassword="$PGPASSWORD" <<< "CREATE USER harmonbot SUPERUSER PASSWORD :'pgpassword'"
-
matrix:
only:
- image: macos
stack: Python 3.8.1

image:
- Visual Studio 2019
Expand Down

0 comments on commit 280be9e

Please sign in to comment.