Skip to content

Commit

Permalink
fix: trying to make the tests run correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
nawetimebomb committed Sep 16, 2024
1 parent cdd468e commit 2bd0d16
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 2bd0d16

Please sign in to comment.