From 660c520bc220e1a455afea86423ac6f888bf24d0 Mon Sep 17 00:00:00 2001 From: David Chu <45278895+thedavidchu@users.noreply.github.com> Date: Wed, 21 Feb 2024 20:16:51 -0500 Subject: [PATCH] Delete .github/workflows/linux_compiler_test.yml --- .github/workflows/linux_compiler_test.yml | 27 ----------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/linux_compiler_test.yml diff --git a/.github/workflows/linux_compiler_test.yml b/.github/workflows/linux_compiler_test.yml deleted file mode 100644 index 251c7e6..0000000 --- a/.github/workflows/linux_compiler_test.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Test - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - run-linux-python3: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - name: Compile - run: | - # For some reason, if we change to the compiler directory, Python complains. - export PYTHONPATH="${PYTHONPATH}:/home/runner/work/dolang/dolang/src/" - for x in fibonacci helloworld math_ops nested_if sum_three - do - python src/compiler/lol.py -i examples/$x.lol -o results - gcc results/$x-*.c - ./a.out - done