increase default compute exeution time #591
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
name: Windows | |
on: | |
push: | |
schedule: | |
- cron: "0 2 * * 6" # every sunday at 2am | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
testSuffix: ${{ fromJSON('["BaseBehaviorTestStatic,BaseBehaviorTestDynamic","HamrTranspileTests,GumboTest","CodeGenTest_Base","CodegenTest_CASE,Ros2Tests"]') }} | |
name: '${{ matrix.testSuffix }}' | |
steps: | |
- name: Support longpaths | |
run: git config --system core.longpaths true | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install Cygwin | |
shell: cmd | |
run: | | |
choco config get cacheLocation | |
choco install --no-progress cygwin | |
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http://mirrors.kernel.org/sourceware/cygwin/ -P gcc-core,gcc-g++,make,cmake | |
- name: Retrieve versions.properties | |
run: | | |
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/sireum/kekinian/master/versions.properties" -OutFile "versions.properties" | |
- name: Cache Java | |
id: cache-java | |
uses: actions/cache@v4 | |
with: | |
path: bin\win\java | |
key: ${{ runner.os }}-${{ hashFiles('versions.properties') }}-java | |
- name: Cache Scala | |
id: cache-scala | |
uses: actions/cache@v4 | |
with: | |
path: bin\scala | |
key: ${{ runner.os }}-${{ hashFiles('versions.properties') }}-scala | |
- name: Cache Coursier | |
id: cache-coursier | |
uses: actions/cache@v4 | |
with: | |
path: cache\coursier | |
key: ${{ runner.os }}-${{ hashFiles('versions.properties') }}-coursier | |
- name: Cache OSATE | |
id: cache-osate | |
uses: actions/cache@v4 | |
with: | |
path: bin\win\osate | |
key: ${{ runner.os }}-${{ hashFiles('jvm\src\main\resources\phantom_versions.properties') }}-osate | |
- name: Check LongPathsEnabled | |
run: | | |
(Get-ItemProperty "HKLM:System\CurrentControlSet\Control\FileSystem").LongPathsEnabled | |
- name: Test | |
shell: cmd | |
run: | | |
xcopy %GITHUB_WORKSPACE%\cache\coursier %HOMEDRIVE%%HOMEPATH%\cache\coursier\ /E/H | |
set COURSIER_CACHE=%HOMEDRIVE%%HOMEPATH%\cache\coursier | |
set PATH=C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin;%PATH% | |
set CC=gcc.exe | |
set CXX=c++.exe | |
cd /d %GITHUB_WORKSPACE% | |
rem see https://github.com/sireum/osate-plugin/blob/57785407d84793cf1f8d5926647e4dc75ab197a9/org.sireum.aadl.osate.cli/src/org/sireum/aadl/osate/cli/Phantom.java#L508-L517 | |
set CHECK_PHANTOM_HAMR_API_COMPATIBILITY=true | |
set testmodes=compile,sergen,slangcheck,phantom,tipe,ive,generated_unit_tests,smt2 | |
echo testmodes=%testmodes% | |
set SMT2_TIMEOUT=180000 | |
echo SMT2_TIMEOUT=%SMT2_TIMEOUT% | |
set ALSO_TRANSPILE_VIA_CALLBACKS=true | |
echo ALSO_TRANSPILE_VIA_CALLBACKS=%ALSO_TRANSPILE_VIA_CALLBACKS% | |
call bin\build.cmd test --suffixes ${{ matrix.testSuffix }} || goto :error | |
goto :EOF | |
:error | |
exit /b %errorlevel% |