Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to use main again #1

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,6 @@ jobs:
key: ${{ matrix.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
restore-keys: ${{ matrix.os }}-rubygems-

- run: brew test-bot --only-cleanup-before

- run: brew test-bot --only-setup

- run: brew test-bot --only-tap-syntax

- run: brew test-bot --only-formulae

- run: brew install git-lfs && git lfs install && sudo ln -s "$(which git-lfs)" "$(git --exec-path)/git-lfs"

- run: brew install jank && brew test jank && file "$(brew --prefix)/bin/jank"
Expand Down
5 changes: 3 additions & 2 deletions Formula/jank.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Jank < Formula
desc "Native Clojure dialect hosted on LLVM"
homepage "https://jank-lang.org"
url "https://github.com/jank-lang/jank.git", branch: "system-boehm"
url "https://github.com/jank-lang/jank.git", branch: "main"
version "0.1"
license "MPL-2.0"

Expand All @@ -27,6 +27,7 @@ def install
inreplace "compiler+runtime/cmake/install.cmake",
'\\$ORIGIN',
jank_install_dir

if OS.mac?
ENV["SDKROOT"] = MacOS.sdk_path
else
Expand All @@ -47,7 +48,7 @@ def install
jank = bin/"jank"

(testpath/"test.jank").write <<~JANK
(+ 5 7)
((fn [] (+ 5 7)))
JANK

assert_equal "12", shell_output("#{jank} run test.jank").strip.lines.last
Expand Down
Loading