mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
483028dbb0
This PR updates the build script: * fixed issue where program version check was not properly triggering; * improved `git-clean` command to correctly clear Scala artifacts; * added `run.ps1` wrapper to the build script that works better with PowerShell than `run.cmd`; * increased timeouts to work around failures on macOS nightly builds; * replaced depracated GitHub Actions APIs (set-output) with their new equivalents; * workaround for issue with electron builder (python2 lookup) on newer macOS runner images; * GUI and backend dispatches to cloud were completed; * release workflow allows creating RC releases.
73 lines
2.9 KiB
YAML
73 lines
2.9 KiB
YAML
name: Changelog
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
- synchronize
|
|
- opened
|
|
- reopened
|
|
jobs:
|
|
changelog:
|
|
name: Changelog
|
|
runs-on:
|
|
- X64
|
|
steps:
|
|
- if: startsWith(runner.name, 'GitHub Actions') || startsWith(runner.name, 'Hosted Agent')
|
|
name: Setup conda (GH runners only)
|
|
uses: s-weigand/setup-conda@v1.0.5
|
|
with:
|
|
update-conda: false
|
|
conda-channels: anaconda, conda-forge
|
|
- if: startsWith(runner.name, 'GitHub Actions') || startsWith(runner.name, 'Hosted Agent')
|
|
name: Installing wasm-pack
|
|
uses: jetli/wasm-pack-action@v0.3.0
|
|
with:
|
|
version: v0.10.2
|
|
- name: Expose Artifact API and context information.
|
|
uses: actions/github-script@v6
|
|
with:
|
|
script: "\n core.exportVariable(\"ACTIONS_RUNTIME_TOKEN\", process.env[\"ACTIONS_RUNTIME_TOKEN\"])\n core.exportVariable(\"ACTIONS_RUNTIME_URL\", process.env[\"ACTIONS_RUNTIME_URL\"])\n core.exportVariable(\"GITHUB_RETENTION_DAYS\", process.env[\"GITHUB_RETENTION_DAYS\"])\n console.log(context)\n "
|
|
- if: runner.os == 'Windows'
|
|
name: Workaround for https://github.com/actions/checkout/issues/590 (Windows)
|
|
run: '"c:\Program Files\Git\bin\bash.exe" -c "git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || :"'
|
|
shell: cmd
|
|
- if: runner.os != 'Windows'
|
|
name: Workaround for https://github.com/actions/checkout/issues/590 (non-Windows)
|
|
run: "git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || :"
|
|
shell: bash
|
|
- name: Checking out the repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
clean: false
|
|
submodules: recursive
|
|
- name: Build Script Setup
|
|
run: ./run --help
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
timeout-minutes: 360
|
|
- if: "contains(github.event.pull_request.labels.*.name, 'CI: Clean build required')"
|
|
name: Clean before
|
|
run: ./run git-clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
timeout-minutes: 360
|
|
- run: ./run changelog-check
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
timeout-minutes: 360
|
|
- if: failure() && runner.os == 'Windows'
|
|
name: List files if failed (Windows)
|
|
run: Get-ChildItem -Force -Recurse
|
|
- if: failure() && runner.os != 'Windows'
|
|
name: List files if failed (non-Windows)
|
|
run: ls -lAR
|
|
- if: "always() && always() && contains(github.event.pull_request.labels.*.name, 'CI: Clean build required')"
|
|
name: Clean after
|
|
run: ./run git-clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
timeout-minutes: 360
|
|
env:
|
|
ENSO_BUILD_SKIP_VERSION_CHECK: "true"
|