diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 589b4c3..537c26a 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -26,15 +26,26 @@ jobs: - 5432:5432 env: POSTGRES_PASSWORD: postgres + mysql8: + image: mysql:8.0 + env: + MYSQL_ALLOW_EMPTY_PASSWORD: yes + MYSQL_DATABASE: test_db + ports: + - 3306:3306 steps: - uses: actions/checkout@v4 - - name: Setup Service if: matrix.db-type == 'mysql' run: | - sudo service mysql start - mysql -h 127.0.0.1 -u root -proot -e 'CREATE DATABASE cakephp;' + apt-get update && apt-get install -y lsb-release inetutils-tools + wget https://dev.mysql.com/get/mysql-apt-config_0.8.24-1_all.deb + DEBIAN_FRONTEND=noninteractive dpkg -i mysql-apt-config_0.8.24-1_all.deb + apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B7B3B788A8D3785C + apt-get update + apt install -y default-mysql-client + mysql -h mysql8 -u root -e 'CREATE DATABASE cakephp;' - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/templates/ProductCatalogs/index.php b/templates/ProductCatalogs/index.php index 5dc9d2e..e25024c 100644 --- a/templates/ProductCatalogs/index.php +++ b/templates/ProductCatalogs/index.php @@ -11,7 +11,6 @@ - @@ -21,7 +20,6 @@ - diff --git a/templates/ProductCategories/index.php b/templates/ProductCategories/index.php index de301d4..c9e8e7e 100644 --- a/templates/ProductCategories/index.php +++ b/templates/ProductCategories/index.php @@ -11,7 +11,6 @@
Paginator->sort('id') ?> Paginator->sort('name') ?> Paginator->sort('catalog_description') ?> Paginator->sort('enabled') ?>
id; ?> name) ?> catalog_description) ?> enabled) ?>
- @@ -22,7 +21,6 @@ - diff --git a/templates/ProductCategoryAttributes/index.php b/templates/ProductCategoryAttributes/index.php index cf164c5..a7dd0f8 100644 --- a/templates/ProductCategoryAttributes/index.php +++ b/templates/ProductCategoryAttributes/index.php @@ -11,7 +11,6 @@
Paginator->sort('id') ?> Paginator->sort('product_catalog_id') ?> Paginator->sort('name') ?> Paginator->sort('parent_id') ?>
id; ?> hasValue('product_catalog') ? $this->Html->link($productCategory->product_catalog->name, ['controller' => 'ProductCatalogs', 'action' => 'view', $productCategory->product_catalog->id]) : '' ?> name) ?> hasValue('parent_product_category') ? $this->Html->link($productCategory->parent_product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategory->parent_product_category->id]) : '' ?>
- @@ -22,7 +21,6 @@ - diff --git a/templates/ProductCategoryAttributes/view.php b/templates/ProductCategoryAttributes/view.php index 08d57ec..31b5742 100644 --- a/templates/ProductCategoryAttributes/view.php +++ b/templates/ProductCategoryAttributes/view.php @@ -42,7 +42,6 @@
Paginator->sort('id') ?> Paginator->sort('name') ?> Paginator->sort('product_category_id') ?> Paginator->sort('attribute_type_id') ?>
id ?> name) ?> hasValue('product_category') ? $this->Html->link($productCategoryAttribute->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategoryAttribute->product_category->id]) : '' ?> attribute_type_id->name ?>
- @@ -51,7 +50,6 @@ product_category_attribute_options as $productCategoryAttributeOptions) : ?> - diff --git a/templates/Products/index.php b/templates/Products/index.php index c4a0f52..c8d2d11 100644 --- a/templates/Products/index.php +++ b/templates/Products/index.php @@ -11,7 +11,6 @@
id) ?>product_category_attribute_id) ?> attribute_value) ?> attribute_label) ?> enabled) ?>
- @@ -21,7 +20,6 @@ -
Paginator->sort('id') ?> Paginator->sort('name') ?> Paginator->sort('product_category_id') ?> Paginator->sort('product_type_id') ?>
Number->format($product->id) ?> name) ?> hasValue('product_category') ? $this->Html->link($product->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $product->product_category->id]) : '' ?> product_type_id->name ?>