Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalStrehovsky authored Apr 12, 2024
1 parent 8e27e22 commit 439586c
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
ml64 hello.asm /link /entry:main kernel32.lib
(
echo LANGUAGE=Assembly
echo COMPILER=Microsoft Macro Assembler Version 14.35.32217.1
echo COMPILER=Microsoft Macro Assembler Version 14.38.33135.0
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand All @@ -44,7 +44,7 @@ jobs:
cl /MT /Os hello.c
(
echo LANGUAGE=C
echo COMPILER=Microsoft C/C++ Optimizing Compiler Version 19.35.32217.1 for x64
echo COMPILER=Microsoft C/C++ Optimizing Compiler Version 19.38.33135 for x64
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand All @@ -70,7 +70,7 @@ jobs:
cl /MT /Os /EHsc hello.cpp
(
echo LANGUAGE=C++
echo COMPILER=Microsoft C/C++ Optimizing Compiler Version 19.35.32217.1 for x64
echo COMPILER=Microsoft C/C++ Optimizing Compiler Version 19.38.33135 for x64
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand All @@ -94,7 +94,7 @@ jobs:
crystal build hello.cr --release
(
echo LANGUAGE=Crystal
echo COMPILER=Crystal 1.9.2 [1908c81] ^(2023-07-19^)
echo COMPILER=Crystal 1.12.1 [4cea101] ^(2024-04-11^)
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
dmd --version
(
echo LANGUAGE=D
echo COMPILER=DMD64 D Compiler v2.104.2-dirty
echo COMPILER=DMD64 D Compiler v2.108.0
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand All @@ -167,7 +167,7 @@ jobs:
dart --version
(
echo LANGUAGE=Dart
echo COMPILER=Dart SDK version: 3.0.6 ^(stable^) ^(Tue Jul 11 18:49:07 2023 +0000^) on "windows_x64"
echo COMPILER=Dart SDK version: 3.3.3 ^(stable^) ^(Tue Mar 26 14:21:33 2024 +0000^) on "windows_x64"
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
go version
(
echo LANGUAGE=Go
echo COMPILER=go version go1.20.6 windows/amd64
echo COMPILER=go version go1.22.2 windows/amd64
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
- uses: graalvm/setup-graalvm@v1
with:
version: 'latest'
java-version: '17'
java-version: '22'
components: 'native-image'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
- uses: graalvm/setup-graalvm@v1
with:
version: 'latest'
java-version: '17'
java-version: '22'
components: 'native-image'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
nim --version
(
echo LANGUAGE=Nim
echo COMPILER=Nim Compiler Version 1.6.14 [Windows: amd64]
echo COMPILER=Nim Compiler Version 2.0.2 [Windows: amd64]
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand All @@ -361,7 +361,7 @@ jobs:
rustc --version
(
echo LANGUAGE=Rust
echo COMPILER=rustc 1.71.0 ^(8ede3aae2 2023-07-12^)
echo COMPILER=rustc 1.77.1 ^(7cf61ebde 2024-03-27^)
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -412,16 +412,15 @@ jobs:
cd swift
# Attempt to do a static executable. As of Swift 5.7.3, this doesn't seem to actually work.
swiftc -Osize -static-executable hello.swift
where swiftCore.dll
# for /r "%PROGRAMFILES%\Microsoft Visual Studio" %%a in (*) do if "%%~nxa"=="vcruntime140.dll" echo %%~dpnxa
copy "%PROGRAMFILES%\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.38.33135\x64\Microsoft.VC143.CRT\vcruntime140.dll" .
copy "%PROGRAMFILES%\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.38.33135\x64\Microsoft.VC143.CRT\vcruntime140_1.dll" .
copy "%PROGRAMFILES%\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.38.33135\x64\Microsoft.VC143.CRT\msvcp140.dll" .
copy "%PROGRAMFILES%\swift\runtime-development\usr\bin\swiftCore.dll" .
copy "%LOCALAPPDATA%\Programs\Swift\Runtimes\5.10.0\usr\bin\swiftCore.dll" .
swiftc -version
(
echo LANGUAGE=Swift
echo COMPILER=compnerd.org Swift version 5.8.1 ^(swift-5.8.1-RELEASE^)
echo COMPILER=Swift version 5.10 ^(swift-5.10-RELEASE^)
echo NOTES=Includes: swiftCore.dll, vcruntime140.dll, vcruntime140_1.dll, msvcp140.dll
)>info.txt
- name: Upload
Expand Down Expand Up @@ -476,7 +475,7 @@ jobs:
zig version
(
echo LANGUAGE=Zig
echo COMPILER=0.11.0-dev.4191+1bf16b172
echo COMPILER=0.12.0-dev.3634+3d1652070
)>info.txt
- name: Upload
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 439586c

Please sign in to comment.