From 11c90a1d36e197c270dac1a184b804d897f92d53 Mon Sep 17 00:00:00 2001 From: mertcandav Date: Tue, 18 Jun 2024 15:25:17 +0300 Subject: [PATCH] ci/cd: add build workflow for GCC Windows --- .github/workflows/build_gcc_windows.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/build_gcc_windows.yml diff --git a/.github/workflows/build_gcc_windows.yml b/.github/workflows/build_gcc_windows.yml new file mode 100644 index 000000000..c0b04c0c0 --- /dev/null +++ b/.github/workflows/build_gcc_windows.yml @@ -0,0 +1,12 @@ +name: Build [GCC] - Windows +on: [push, pull_request] +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - uses: julelang/ci@main + + - name: Build JuleC + run: | + .\bin\julec --compiler gcc src/julec \ No newline at end of file