From 1e4b0179011b51feb34c849e5be7c80a55ada640 Mon Sep 17 00:00:00 2001 From: Mertcan D <54983926+mertcandav@users.noreply.github.com> Date: Mon, 26 Feb 2024 11:49:17 +0300 Subject: [PATCH] Create std_tests_gcc_macos.yml --- .github/workflows/std_tests_gcc_macos.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/std_tests_gcc_macos.yml diff --git a/.github/workflows/std_tests_gcc_macos.yml b/.github/workflows/std_tests_gcc_macos.yml new file mode 100644 index 000000000..2d8963c7d --- /dev/null +++ b/.github/workflows/std_tests_gcc_macos.yml @@ -0,0 +1,19 @@ +name: Std Tests [GCC] - macOS +on: [push, pull_request] + +jobs: + build-and-exec: + runs-on: macOS-latest + steps: + - uses: actions/checkout@v4 + - uses: Panquesito7/setup-jule@v1.1.3 + with: + version: dev + directory: . + add-to-path: true + + - name: Test - std::math::big + run: | + julec test -t --compiler gcc -o test std/math/big + g++-13 -w --std=c++17 dist/ir.cpp -o test + ./test