summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn Parent <john.parent@kitware.com>2022-01-25 17:29:17 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2022-03-17 09:01:01 -0700
commit90c773488c59e57c19ecca5635c1ae7f70e56076 (patch)
tree92afff7ea0751cb9b3a41bd33ded560b5c00fe82 /.github
parente65d3d14b4a7a9a9667b006bea1f9f2eafc69472 (diff)
downloadspack-90c773488c59e57c19ecca5635c1ae7f70e56076.tar.gz
spack-90c773488c59e57c19ecca5635c1ae7f70e56076.tar.bz2
spack-90c773488c59e57c19ecca5635c1ae7f70e56076.tar.xz
spack-90c773488c59e57c19ecca5635c1ae7f70e56076.zip
Add Github Actions for Windows (#24504)
Setup Installer CI (#25184), (#25191) Co-authored-by: Zack Galbreath <zack.galbreath@kitware.com> Co-authored-by: lou.lawrence@kitware.com <lou.lawrence@kitware.com> Co-authored-by: Betsy McPhail <betsy.mcphail@kitware.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/execute_installer.ps17
-rw-r--r--.github/workflows/setup_git.ps116
-rw-r--r--.github/workflows/system_shortcut_check.ps14
-rw-r--r--.github/workflows/windows_python.yml185
4 files changed, 212 insertions, 0 deletions
diff --git a/.github/workflows/execute_installer.ps1 b/.github/workflows/execute_installer.ps1
new file mode 100644
index 0000000000..9d9f5cfbeb
--- /dev/null
+++ b/.github/workflows/execute_installer.ps1
@@ -0,0 +1,7 @@
+$ proc = Start-Process ${{ env.spack_installer }}\spack.exe "/install /quiet" -Passthru
+$handle = $proc.Handle # cache proc.Handle
+$proc.WaitForExit();
+
+if ($proc.ExitCode -ne 0) {
+ Write-Warning "$_ exited with status code $($proc.ExitCode)"
+}
diff --git a/.github/workflows/setup_git.ps1 b/.github/workflows/setup_git.ps1
new file mode 100644
index 0000000000..19d3b81b97
--- /dev/null
+++ b/.github/workflows/setup_git.ps1
@@ -0,0 +1,16 @@
+# (c) 2021 Lawrence Livermore National Laboratory
+
+Set-Location spack
+
+git config --global user.email "spack@example.com"
+git config --global user.name "Test User"
+
+if ($(git branch --show-current) -ne "develop")
+{
+ git branch develop origin/develop
+}
+
+if ($(git branch --show-current) -ne "features/windows-support")
+{
+ git branch features/windows-support origin/features/windows-support
+}
diff --git a/.github/workflows/system_shortcut_check.ps1 b/.github/workflows/system_shortcut_check.ps1
new file mode 100644
index 0000000000..03b3a236f1
--- /dev/null
+++ b/.github/workflows/system_shortcut_check.ps1
@@ -0,0 +1,4 @@
+param ($systemFolder, $shortcut)
+
+$start = [System.Environment]::GetFolderPath("$systemFolder")
+Invoke-Item "$start\Programs\Spack\$shortcut"
diff --git a/.github/workflows/windows_python.yml b/.github/workflows/windows_python.yml
new file mode 100644
index 0000000000..7549273628
--- /dev/null
+++ b/.github/workflows/windows_python.yml
@@ -0,0 +1,185 @@
+name: windows tests
+
+on:
+ push:
+ branches:
+ - features/windows-support
+ - windows-ci*
+ pull_request:
+ branches:
+ - features/windows-support
+ - windows-ci*
+ - develop
+defaults:
+ run:
+ shell:
+ powershell Invoke-Expression -Command ".\share\spack\qa\windows_test_setup.ps1"; {0}
+jobs:
+ validate:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - name: Install Python Packages
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install --upgrade vermin
+ - name: vermin (Spack's Core)
+ run: vermin --backport argparse --backport typing -t='2.6-' -t='3.5-' -v spack/lib/spack/spack/ spack/lib/spack/llnl/ spack/bin/
+ - name: vermin (Repositories)
+ run: vermin --backport argparse --backport typing -t='2.6-' -t='3.5-' -v spack/var/spack/repos
+ # Run style checks on the files that have been changed
+ style:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - name: Install Python packages
+ run: |
+ python -m pip install --upgrade pip six setuptools flake8 isort>=4.3.5 mypy>=0.800 black pywin32 types-python-dateutil
+ - name: Create local develop
+ run: |
+ .\spack\.github\workflows\setup_git.ps1
+ - name: Run style tests
+ run: |
+ spack style
+ - name: Verify license headers
+ run: |
+ python spack\bin\spack license verify
+ unittest:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - name: Install Python packages
+ run: |
+ python -m pip install --upgrade pip six pywin32 setuptools codecov coverage
+ - name: Create local develop
+ run: |
+ .\spack\.github\workflows\setup_git.ps1
+ - name: Unit Test
+ run: |
+ echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml
+ spack unit-test -x --verbose --ignore=lib/spack/spack/test/cmd
+ unittest-cmd:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - name: Install Python packages
+ run: |
+ python -m pip install --upgrade pip six pywin32 setuptools codecov coverage
+ - name: Create local develop
+ run: |
+ .\spack\.github\workflows\setup_git.ps1
+ - name: Command Unit Test
+ run: |
+ echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml
+ spack unit-test lib/spack/spack/test/cmd -x --verbose
+ buildtest:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - name: Install Python packages
+ run: |
+ python -m pip install --upgrade pip six pywin32 setuptools codecov coverage
+ - name: Build Test
+ run: |
+ spack compiler find
+ echo F|xcopy .\spack\share\spack\qa\configuration\windows_config.yaml $env:USERPROFILE\.spack\windows\config.yaml
+ spack external find cmake
+ spack external find ninja
+ spack install abseil-cpp
+ generate-installer-test:
+ runs-on: windows-latest
+ steps:
+ - name: Disable Windows Symlinks
+ run: |
+ git config --global core.symlinks false
+ shell:
+ powershell
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - name: Install Python packages
+ run: |
+ python -m pip install --upgrade pip six pywin32 setuptools codecov coverage
+ - name: Add Light and Candle to Path
+ run: |
+ $env:WIX >> $GITHUB_PATH
+ - name: Run Installer
+ run: |
+ .\spack\share\spack\qa\setup_spack.ps1
+ spack make-installer -s spack -g SILENT pkg
+ echo "installer_root=$((pwd).Path)" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
+ env:
+ ProgressPreference: SilentlyContinue
+ - uses: actions/upload-artifact@v2
+ with:
+ name: Windows Spack Installer Bundle
+ path: ${{ env.installer_root }}\pkg\Spack.exe
+ - uses: actions/upload-artifact@v2
+ with:
+ name: Windows Spack Installer
+ path: ${{ env.installer_root}}\pkg\Spack.msi
+ execute-installer:
+ needs: generate-installer-test
+ runs-on: windows-latest
+ defaults:
+ run:
+ shell: pwsh
+ steps:
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.9
+ - name: Install Python packages
+ run: |
+ python -m pip install --upgrade pip six pywin32 setuptools codecov coverage
+ - name: Setup installer directory
+ run: |
+ mkdir -p spack_installer
+ echo "spack_installer=$((pwd).Path)\spack_installer" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
+ - uses: actions/download-artifact@v2
+ with:
+ name: Windows Spack Installer Bundle
+ path: ${{ env.spack_installer }}
+ - name: Execute Bundled Installer
+ run: |
+ $proc = Start-Process ${{ env.spack_installer }}\spack.exe "/install /quiet" -Passthru
+ $handle = $proc.Handle # cache proc.Handle
+ $proc.WaitForExit();
+ $LASTEXITCODE
+ env:
+ ProgressPreference: SilentlyContinue
+ - uses: actions/download-artifact@v2
+ with:
+ name: Windows Spack Installer
+ path: ${{ env.spack_installer }}
+ - name: Execute MSI
+ run: |
+ $proc = Start-Process ${{ env.spack_installer }}\spack.msi "/quiet" -Passthru
+ $handle = $proc.Handle # cache proc.Handle
+ $proc.WaitForExit();
+ $LASTEXITCODE \ No newline at end of file