update zeromq #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Extension CI | |
on: [push, pull_request] | |
jobs: | |
linux: | |
if: false | |
runs-on: ubuntu-latest | |
container: | |
image: wolframresearch/wolframengine:latest | |
options: --user root | |
env: | |
WOLFRAM_SYSTEM_ID: Linux-x86-64 | |
WOLFRAM_EXECUTABLE: wolframscript | |
WOLFRAMSCRIPT_ENTITLEMENTID: ${{ secrets.WOLFRAM_LICENSE_ENTITLEMENT_ID }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ^16 | |
- run: npm ci | |
- name: Build extension | |
run: | | |
npm run syntaxes | |
npm run compile | |
- name: Run extension tests | |
uses: GabrielBB/xvfb-action@v1.0 | |
with: | |
run: npm test | |
windows: | |
if: false | |
runs-on: windows-latest | |
env: | |
WOLFRAM_SYSTEM_ID: Windows-x86-64 | |
WOLFRAM_EXECUTABLE: wolframscript | |
WOLFRAMENGINE_INSTALL_MSI_DOWNLOAD_URL: https://files.wolframcdn.com/packages/winget/13.0.0.0/WolframEngine_13.0.0_WIN.msi | |
WOLFRAMENGINE_CACHE_KEY: WolframEngine-13.0.0 | |
WOLFRAMENGINE_INSTALLATION_SUBDIRECTORY: WolframEngine | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache/restore Wolfram Engine installation | |
id: cache-restore | |
uses: actions/cache@v2 | |
env: | |
WOLFRAMENGINE_INSTALLATION_DIRECTORY: '${{ runner.temp }}\${{ env.WOLFRAMENGINE_INSTALLATION_SUBDIRECTORY }}' | |
with: | |
path: ${{ env.WOLFRAMENGINE_INSTALLATION_DIRECTORY }} | |
key: wolframengine-${{ env.WOLFRAM_SYSTEM_ID }}-${{ env.WOLFRAMENGINE_CACHE_KEY }} | |
- name: Download and install Wolfram Engine | |
if: steps.cache-restore.outputs.cache-hit != 'true' | |
env: | |
WOLFRAMENGINE_INSTALLATION_DIRECTORY: '${{ runner.temp }}\${{ env.WOLFRAMENGINE_INSTALLATION_SUBDIRECTORY }}' | |
WOLFRAMENGINE_INSTALL_MSI_PATH: '${{ runner.temp }}\WolframEngine-Install.msi' | |
WOLFRAMENGINE_INSTALL_LOG_PATH: '${{ runner.temp }}\WolframEngine-Install.log' | |
run: | | |
echo 'Downloading Wolfram Engine installer...' | |
$msiFile = '${{ env.WOLFRAMENGINE_INSTALL_MSI_PATH }}' | |
$logFile = '${{ env.WOLFRAMENGINE_INSTALL_LOG_PATH }}' | |
Import-Module BitsTransfer | |
Start-BitsTransfer '${{ env.WOLFRAMENGINE_INSTALL_MSI_DOWNLOAD_URL }}' $msiFile | |
echo 'Downloaded Wolfram Engine installer.' | |
$DataStamp = get-date -Format yyyyMMddTHHmmss | |
$MSIArguments = @( | |
"/i" | |
('"{0}"' -f $msiFile) | |
'INSTALLLOCATION="${{ env.WOLFRAMENGINE_INSTALLATION_DIRECTORY }}"' | |
"/qn" | |
"/norestart" | |
"/L*v" | |
$logFile | |
) | |
echo 'Installing Wolfram Engine...' | |
Start-Process "msiexec.exe" -ArgumentList $MSIArguments -Wait -NoNewWindow | |
echo 'Installed Wolfram Engine.' | |
- name: Test Wolfram Engine installation | |
env: | |
WOLFRAMENGINE_INSTALLATION_DIRECTORY: '${{ runner.temp }}\${{ env.WOLFRAMENGINE_INSTALLATION_SUBDIRECTORY }}' | |
WOLFRAMINIT: "-pwfile !cloudlm.wolfram.com -entitlement ${{ secrets.WOLFRAM_LICENSE_ENTITLEMENT_ID }}" | |
run: | | |
$env:Path += ';${{ env.WOLFRAMENGINE_INSTALLATION_DIRECTORY }}\' | |
cd ${{ env.WOLFRAMENGINE_INSTALLATION_DIRECTORY }} | |
dir | |
${{ env.WOLFRAM_EXECUTABLE }} -code Now |