Skip to content

Commit

Permalink
disable poem-web checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Wulf committed Sep 29, 2023
1 parent 834a35f commit ec40f71
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 112 deletions.
110 changes: 55 additions & 55 deletions .github/workflows/CLI-PoemPostgres-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,62 +21,62 @@ concurrency:
group: CI-PP-${{ github.ref }}
cancel-in-progress: true

jobs:
jobs: {}
# naming convention is: [backend]-[database]-[plugins]
Poem-Postgres-None:
name: Poem w/ Postgres and no plugins
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: rui314/setup-mold@v1
- run: rustup install stable
- run: rustup update
- uses: actions/[email protected]
with:
path: |
.cargo/.build
key: ${{ runner.os }}-cargo-cli-PP-${{ hashFiles('**/Cargo.lock') }}
- run: git config --global user.name test
- run: git config --global user.email [email protected]
- uses: actions-rs/[email protected]
with:
command: run
args: --bin create-rust-app -- create -c -d postgres -b poem test-project
- name: test test-project
working-directory: ./test-project
run: |
printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamptz,\n updated_at -> Timestamptz,\n }\n}" >> ./backend/schema.rs
sed -i 's/create-rust-app = {/create-rust-app = { path = "..\/create-rust-app", /' ./Cargo.toml
cargo dsync
cargo check
Poem-Postgres-All:
# needs: [Poem-Postgres-None]
name: Poem w/ Postgres and all valid plugins
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: rui314/setup-mold@v1
- run: rustup install stable
- run: rustup update
- uses: actions/[email protected]
with:
path: |
.cargo/.build
key: ${{ runner.os }}-cargo-cli-PP-all-${{ hashFiles('**/Cargo.lock') }}
- run: git config --global user.name test
- run: git config --global user.email [email protected]
- uses: actions-rs/[email protected]
with:
command: run
args: --bin create-rust-app -- create -c -d postgres -b poem --plugins=auth,container,graphql,storage test-project
- name: test test-project
working-directory: ./test-project
run: |
printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamptz,\n updated_at -> Timestamptz,\n }\n}" >> ./backend/schema.rs
sed -i 's/create-rust-app]/create-rust-app]\npath = "..\/create-rust-app"/' Cargo.toml
cargo dsync
cargo check
# Poem-Postgres-None:
# name: Poem w/ Postgres and no plugins
# runs-on: ubuntu-latest
# steps:
# - uses: actions/[email protected]
# - uses: rui314/setup-mold@v1
# - run: rustup install stable
# - run: rustup update
# - uses: actions/[email protected]
# with:
# path: |
# .cargo/.build
# key: ${{ runner.os }}-cargo-cli-PP-${{ hashFiles('**/Cargo.lock') }}
# - run: git config --global user.name test
# - run: git config --global user.email [email protected]
# - uses: actions-rs/[email protected]
# with:
# command: run
# args: --bin create-rust-app -- create -c -d postgres -b poem test-project
# - name: test test-project
# working-directory: ./test-project
# run: |
# printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamptz,\n updated_at -> Timestamptz,\n }\n}" >> ./backend/schema.rs
# sed -i 's/create-rust-app = {/create-rust-app = { path = "..\/create-rust-app", /' ./Cargo.toml
# cargo dsync
# cargo check
#
# Poem-Postgres-All:
# # needs: [Poem-Postgres-None]
# name: Poem w/ Postgres and all valid plugins
# runs-on: ubuntu-latest
# steps:
# - uses: actions/[email protected]
# - uses: rui314/setup-mold@v1
# - run: rustup install stable
# - run: rustup update
# - uses: actions/[email protected]
# with:
# path: |
# .cargo/.build
# key: ${{ runner.os }}-cargo-cli-PP-all-${{ hashFiles('**/Cargo.lock') }}
# - run: git config --global user.name test
# - run: git config --global user.email [email protected]
# - uses: actions-rs/[email protected]
# with:
# command: run
# args: --bin create-rust-app -- create -c -d postgres -b poem --plugins=auth,container,graphql,storage test-project
# - name: test test-project
# working-directory: ./test-project
# run: |
# printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamptz,\n updated_at -> Timestamptz,\n }\n}" >> ./backend/schema.rs
# sed -i 's/create-rust-app]/create-rust-app]\npath = "..\/create-rust-app"/' Cargo.toml
# cargo dsync
# cargo check

# Poem-Postgres-Container:
# needs: [Poem-Postgres-None]
Expand Down
114 changes: 57 additions & 57 deletions .github/workflows/CLI-PoemSqlite-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,63 +21,63 @@ concurrency:
group: CI-PS-${{ github.ref }}
cancel-in-progress: true

jobs:
# naming convention is: [backend]-[database]-[plugins]
Poem-Sqlite-None:
name: Poem w/ Sqlite and no plugins
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: rui314/setup-mold@v1
- run: rustup install stable
- run: rustup update
- uses: actions/[email protected]
with:
path: |
.cargo/.build
key: ${{ runner.os }}-cargo-cli-PS-${{ hashFiles('**/Cargo.lock') }}
- run: git config --global user.name test
- run: git config --global user.email [email protected]
- uses: actions-rs/[email protected]
with:
command: run
args: --bin create-rust-app -- create -c -d sqlite -b poem test-project
- name: test test-project
working-directory: ./test-project
run: |
printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamp,\n updated_at -> Timestamp,\n }\n}" >> ./backend/schema.rs
sed -i 's/create-rust-app = {/create-rust-app = { path = "..\/create-rust-app", /' ./Cargo.toml
cargo dsync
cargo check
Poem-Sqlite-All:
# needs: [Poem-Sqlite-None]
name: Poem w/ Sqlite and all valid plugins
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: rui314/setup-mold@v1
- run: rustup install stable
- run: rustup update
- uses: actions/[email protected]
with:
path: |
.cargo/.build
key: ${{ runner.os }}-cargo-cli-PS-all-${{ hashFiles('**/Cargo.lock') }}
- run: git config --global user.name test
- run: git config --global user.email [email protected]
- uses: actions-rs/[email protected]
with:
command: run
args: --bin create-rust-app -- create -c -d sqlite -b poem --plugins=auth,container,graphql,storage test-project
- name: test test-project
working-directory: ./test-project
run: |
printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamp,\n updated_at -> Timestamp,\n }\n}" >> ./backend/schema.rs
sed -i 's/create-rust-app]/create-rust-app]\npath = "..\/create-rust-app"/' Cargo.toml
cargo dsync
cargo check
jobs: {}
# # naming convention is: [backend]-[database]-[plugins]
# Poem-Sqlite-None:
# name: Poem w/ Sqlite and no plugins
# runs-on: ubuntu-latest
# steps:
# - uses: actions/[email protected]
# - uses: rui314/setup-mold@v1
# - run: rustup install stable
# - run: rustup update
# - uses: actions/[email protected]
# with:
# path: |
# .cargo/.build
# key: ${{ runner.os }}-cargo-cli-PS-${{ hashFiles('**/Cargo.lock') }}
# - run: git config --global user.name test
# - run: git config --global user.email [email protected]
# - uses: actions-rs/[email protected]
# with:
# command: run
# args: --bin create-rust-app -- create -c -d sqlite -b poem test-project
# - name: test test-project
# working-directory: ./test-project
# run: |
# printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamp,\n updated_at -> Timestamp,\n }\n}" >> ./backend/schema.rs
# sed -i 's/create-rust-app = {/create-rust-app = { path = "..\/create-rust-app", /' ./Cargo.toml
# cargo dsync
# cargo check
#
#
# Poem-Sqlite-All:
# # needs: [Poem-Sqlite-None]
# name: Poem w/ Sqlite and all valid plugins
# runs-on: ubuntu-latest
# steps:
# - uses: actions/[email protected]
# - uses: rui314/setup-mold@v1
# - run: rustup install stable
# - run: rustup update
# - uses: actions/[email protected]
# with:
# path: |
# .cargo/.build
# key: ${{ runner.os }}-cargo-cli-PS-all-${{ hashFiles('**/Cargo.lock') }}
# - run: git config --global user.name test
# - run: git config --global user.email [email protected]
# - uses: actions-rs/[email protected]
# with:
# command: run
# args: --bin create-rust-app -- create -c -d sqlite -b poem --plugins=auth,container,graphql,storage test-project
# - name: test test-project
# working-directory: ./test-project
# run: |
# printf "// @generated automatically by Diesel CLI.\ndiesel::table! {\n todos (id) {\n id -> Int4,\n text -> Text,\n created_at -> Timestamp,\n updated_at -> Timestamp,\n }\n}" >> ./backend/schema.rs
# sed -i 's/create-rust-app]/create-rust-app]\npath = "..\/create-rust-app"/' Cargo.toml
# cargo dsync
# cargo check

# Poem-Sqlite-Container:
# needs: [Poem-Sqlite-None]
Expand Down

0 comments on commit ec40f71

Please sign in to comment.