diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a47c3b..632fd1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,9 @@ jobs: - name: run tests run: | sudo apt-get update - sudo apt-get install -qq make yasm + sudo apt-get install -qq make llvm-dev + git clone https://github.com/odin-lang/Odin + cd Odin + make release-native make bash ./test.sh diff --git a/Makefile b/Makefile index 7d3e5f7..a867cd8 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ PROJECT_NAME := Stanczyk NAME := ./skc -CODE := ./code +CODE := ./compiler default: main main: - @ go build -o $(NAME) $(CODE) + @ ./Odin/odin build $(CODE) -out:$(NAME)