Try compiling some C code, If it works then we're probably fine.
I don't even try to verify cross-compilation because I don't need it.
It should work, but that's not my problem right now.
This commit is contained in:
ilammy 2019-10-02 00:48:20 +03:00
Родитель cc105e3302
Коммит d33b04e19c
2 изменённых файлов: 11 добавлений и 0 удалений

4
.github/workflows/main.yml поставляемый
Просмотреть файл

@ -22,3 +22,7 @@ jobs:
run: npm install
- name: Enable Developer Command Prompt
uses: ./
- name: Compile and run some C code
run: |
cl.exe hello.c
hello.exe

7
hello.c Normal file
Просмотреть файл

@ -0,0 +1,7 @@
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello, world!\n");
return 0;
}