Skip to content

Commit

Permalink
Reverting temporary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Mar 21, 2024
1 parent f52399b commit 849bf2a
Showing 1 changed file with 47 additions and 48 deletions.
95 changes: 47 additions & 48 deletions .github/workflows/preview_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
schedule:
# 4:19 AM UTC every day. A random time to avoid peak times of GitHub Actions.
- cron: '19 4 * * *'
pull_request:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
Expand All @@ -20,7 +19,7 @@ jobs:
run: |
$hasCommitFromLastDay = ![string]::IsNullOrEmpty((git log --oneline --since '24 hours ago'))
Write-Output "Commits found in the last 24 hours: $hasCommitFromLastDay."
$shouldPublish = $hasCommitFromLastDay -and '${{ github.event_name }}' -eq 'pull_request'
$shouldPublish = $hasCommitFromLastDay -and '${{ github.event_name }}' -eq 'schedule'
"should-publish=$($shouldPublish ? 'true' : 'false')" >> $Env:GITHUB_OUTPUT
- uses: actions/setup-node@v3
if: steps.check-publish.outputs.should-publish == 'true'
Expand All @@ -33,49 +32,49 @@ jobs:
- name: Set build number
if: steps.check-publish.outputs.should-publish == 'true'
run: echo "BuildNumber=$(( $GITHUB_RUN_NUMBER + 16368 ))" >> $GITHUB_ENV
# - name: Build
# if: steps.check-publish.outputs.should-publish == 'true'
# run: |
# dotnet build -c Release
# - name: Unit Tests
# if: steps.check-publish.outputs.should-publish == 'true'
# run: |
# dotnet test -c Release --no-build ./test/OrchardCore.Tests/OrchardCore.Tests.csproj
# - name: Functional Tests
# if: steps.check-publish.outputs.should-publish == 'true'
# run: |
# cd test/OrchardCore.Tests.Functional
# npm install
# npm run cms:test
# npm run mvc:test
# - uses: actions/upload-artifact@v2
# if: failure()
# with:
# name: Functional Test failure
# path: |
# test/OrchardCore.Tests.Functional/cms-tests/cypress/screenshots
# src/OrchardCore.Cms.Web/App_Data_Tests/logs
# - name: Deploy preview NuGet packages
# if: steps.check-publish.outputs.should-publish == 'true'
# run: |
# dotnet pack -c Release --no-build
# dotnet nuget push './src/**/*.nupkg' -t 600 -k ${{secrets.CLOUDSMITH_API_KEY}} -n -s https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json --skip-duplicate
# - name: Set up Docker Buildx
# if: steps.check-publish.outputs.should-publish == 'true'
# uses: docker/setup-buildx-action@v3
# - name: Login to DockerHub
# if: steps.check-publish.outputs.should-publish == 'true'
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# - name: Deploy preview Docker images
# if: steps.check-publish.outputs.should-publish == 'true'
# shell: pwsh
# run: |
# Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data -Recurse | Remove-Item -Recurse -Confirm:$false
# Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data_Tests -Recurse | Remove-Item -Recurse -Confirm:$false
# $output = [System.IO.Path]::GetFullPath("./.build/release")
# dotnet publish -c Release --property:PublishDir=$output --no-build --framework net8.0
# docker buildx build -f Dockerfile-CI --platform=linux/amd64 -t orchardproject/orchardcore-cms-linux:dev --push .
# docker buildx build -f Dockerfile-CI --platform=windows/amd64 -t orchardproject/orchardcore-cms-windows:dev --push .
- name: Build
if: steps.check-publish.outputs.should-publish == 'true'
run: |
dotnet build -c Release
- name: Unit Tests
if: steps.check-publish.outputs.should-publish == 'true'
run: |
dotnet test -c Release --no-build ./test/OrchardCore.Tests/OrchardCore.Tests.csproj
- name: Functional Tests
if: steps.check-publish.outputs.should-publish == 'true'
run: |
cd test/OrchardCore.Tests.Functional
npm install
npm run cms:test
npm run mvc:test
- uses: actions/upload-artifact@v2
if: failure()
with:
name: Functional Test failure
path: |
test/OrchardCore.Tests.Functional/cms-tests/cypress/screenshots
src/OrchardCore.Cms.Web/App_Data_Tests/logs
- name: Deploy preview NuGet packages
if: steps.check-publish.outputs.should-publish == 'true'
run: |
dotnet pack -c Release --no-build
dotnet nuget push './src/**/*.nupkg' -t 600 -k ${{secrets.CLOUDSMITH_API_KEY}} -n -s https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json --skip-duplicate
- name: Set up Docker Buildx
if: steps.check-publish.outputs.should-publish == 'true'
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
if: steps.check-publish.outputs.should-publish == 'true'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Deploy preview Docker images
if: steps.check-publish.outputs.should-publish == 'true'
shell: pwsh
run: |
Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data -Recurse | Remove-Item -Recurse -Confirm:$false
Get-ChildItem ./src/OrchardCore.Cms.Web/App_Data_Tests -Recurse | Remove-Item -Recurse -Confirm:$false
$output = [System.IO.Path]::GetFullPath("./.build/release")
dotnet publish -c Release --property:PublishDir=$output --no-build --framework net8.0
docker buildx build -f Dockerfile-CI --platform=linux/amd64 -t orchardproject/orchardcore-cms-linux:dev --push .
docker buildx build -f Dockerfile-CI --platform=windows/amd64 -t orchardproject/orchardcore-cms-windows:dev --push .

0 comments on commit 849bf2a

Please sign in to comment.