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 19, 2024
1 parent 820e0c8 commit e2178ce
Showing 1 changed file with 53 additions and 2 deletions.
55 changes: 53 additions & 2 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 @@ -25,6 +24,58 @@ jobs:
Write-Output "Count of new commits found in the last 24 hours: $commitCount."
"commit-count=$commitCount" >> $Env:GITHUB_OUTPUT
- uses: actions/setup-node@v3
if: steps.check-commits.outputs.commit-count > 10
if: steps.check-commits.outputs.commit-count > 0
with:
node-version: "15"
- uses: actions/setup-dotnet@v3
if: steps.check-commits.outputs.commit-count > 0
with:
dotnet-version: '8.0.x'
- name: Set build number
if: steps.check-commits.outputs.commit-count > 0
run: echo "BuildNumber=$(( $GITHUB_RUN_NUMBER + 16368 ))" >> $GITHUB_ENV
- name: Build
if: steps.check-commits.outputs.commit-count > 0
run: |
dotnet build -c Release
- name: Unit Tests
if: steps.check-commits.outputs.commit-count > 0
run: |
dotnet test -c Release --no-build ./test/OrchardCore.Tests/OrchardCore.Tests.csproj
- name: Functional Tests
if: steps.check-commits.outputs.commit-count > 0
run: |
cd test/OrchardCore.Tests.Functional
npm install
npm run cms:test
npm run mvc:test
- uses: actions/upload-artifact@v2
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-commits.outputs.commit-count > 0
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-commits.outputs.commit-count > 0
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
if: steps.check-commits.outputs.commit-count > 0
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Deploy preview Docker images
if: steps.check-commits.outputs.commit-count > 0
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 e2178ce

Please sign in to comment.