From 2bb0d8c47126c3385ac3203b434cbb85eefc9e8c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Mar 2026 19:35:20 +0000 Subject: [PATCH 1/2] Initial plan From 1635ce5c5755ffee6a28decd677a0f75ee1ffbd9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 28 Mar 2026 19:35:57 +0000 Subject: [PATCH 2/2] Remove Makefile and .travis.yml Agent-Logs-Url: https://github.com/jonathanvdc/Flame/sessions/52c89d9d-8bb0-4bdc-b8d8-50c1782829eb Co-authored-by: jonathanvdc <9839946+jonathanvdc@users.noreply.github.com> --- .travis.yml | 33 --------------------------------- Makefile | 29 ----------------------------- 2 files changed, 62 deletions(-) delete mode 100644 .travis.yml delete mode 100644 Makefile diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4126c59e6..000000000 --- a/.travis.yml +++ /dev/null @@ -1,33 +0,0 @@ -language: csharp - -addons: - apt: - sources: - - llvm-toolchain-trusty-7 - - ubuntu-toolchain-r-test - packages: - # Install LLVM. - - libllvm7 - - llvm-7 - - llvm-7-tools - - clang-7 - -install: - # Set the LLVM_PATH variable. - - export LLVM_PATH=$(llvm-config-7 --libdir) - - echo ${LLVM_PATH} - # Restore nuget packages - - make nuget - -script: - # Compile supporting macros. - - make dsl - - # Build Flame using csc (Release) - - make - - # Run the tests - - make test - - # Run LLVM-specific tests. - - make test-llvm diff --git a/Makefile b/Makefile deleted file mode 100644 index d00314614..000000000 --- a/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -SHELL := /bin/bash - -.PHONY: release debug all dsl nuget pack clean test -release: - $(MAKE) -C src release - -debug: - $(MAKE) -C src debug - -all: - $(MAKE) -C src all - -dsl: - $(MAKE) -C src dsl - -nuget: - $(MAKE) -C src nuget - -pack: - $(MAKE) -C src pack - -clean: - $(MAKE) -C src clean - -test: - $(MAKE) -C src test - -test-llvm: - $(MAKE) -C src test-llvm