diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index e1a89f68b..090fd1457 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -5,8 +5,11 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: julelang/ci@windows-support - - name: Build JuleC + - name: Build run: | - .\bin\julec --compiler gcc src\julec \ No newline at end of file + g++ -w --std=c++17 -O0 -o main.exe main.cpp + + - name: Build + run: | + .\main.exe \ No newline at end of file diff --git a/main.cpp b/main.cpp new file mode 100644 index 000000000..387bbe2a5 --- /dev/null +++ b/main.cpp @@ -0,0 +1,6 @@ +#include "api/jule.hpp" + +int main() { + jule::outln("çaça kuşu"); + return 0; +} \ No newline at end of file