Skip to content

Commit

Permalink
ci: add smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Jan 14, 2024
1 parent a40b61c commit 0b0806f
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 3 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Smoke Test
on:
push:
branches:
- main
pull_request:

jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
cache: true
check-latest: true

- name: Compile shopware-cli
run: go build

- name: Checkout Plugin
uses: actions/checkout@v4
with:
repository: 'FriendsOfShopware/FroshTools'
ref: '75e2013752fd4db7535e4b72b3e3e8d57e531002'
path: 'plugin'

- name: Create Shopware
run: ./shopware-cli project create shopware 6.5.7.3

- name: Build asset of Plugin
run: ./shopware-cli extension zip plugin

- name: Build asset of Plugin without Git
run: ./shopware-cli extension zip plugin --disable-git

- name: Validate Plugin
run: ./shopware-cli extension validate FroshTools.zip

- name: Get Changelog
run: ./shopware-cli extension get-changelog plugin

- name: Build asset against custom PROJECT_ROOT
env:
SHOPWARE_PROJECT_ROOT: ${{ github.workspace }}/shopware
run: |
mv plugin/.shopware-extension.yml plugin/.shopware-extension-disable.yml
./shopware-cli extension build plugin
mv plugin/.shopware-extension-disable.yml plugin/.shopware-extension.yml
- name: Setup the project
run: ./shopware-cli project ci shopware
6 changes: 3 additions & 3 deletions cmd/extension/extension_build.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ var extensionAssetBundleCmd = &cobra.Command{
validatedExtensions = append(validatedExtensions, ext)
}

if os.Getenv("SHOPWARE_PROJECT_ROOT") == "" {
constraint, err := extension.GetShopwareProjectConstraint(os.Getenv("SHOPWARE_PROJECT_ROOT"))
if assetCfg.ShopwareRoot != "" {
constraint, err := extension.GetShopwareProjectConstraint(assetCfg.ShopwareRoot)
if err != nil {
return fmt.Errorf("cannot get shopware version constraint from project %s: %w", os.Getenv("SHOPWARE_PROJECT_ROOT"), err)
return fmt.Errorf("cannot get shopware version constraint from project %s: %w", assetCfg.ShopwareRoot, err)
}
assetCfg.ShopwareVersion = constraint
} else {
Expand Down

0 comments on commit 0b0806f

Please sign in to comment.