Skip to content

Commit

Permalink
Fix ci (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue authored Dec 16, 2024
1 parent 058f77f commit c988ce9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
path: resources/portal
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: '6.x'
- run: dotnet tool install --global Clojure.Main
- run: dotnet restore
- run: bb -m tasks.test/cljr
Expand Down
2 changes: 1 addition & 1 deletion test/portal/runtime/api_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[portal.runtime.browser :as browser]))

(defn- headless-chrome-flags [url]
["--headless=new" "--disable-gpu" url])
["--headless=new" "--disable-gpu" "--no-sandbox" url])

(defn- open []
(p/open {:mode :test
Expand Down
2 changes: 1 addition & 1 deletion test/portal/runtime/api_test.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[portal.runtime.browser :as browser]))

(defn- headless-chrome-flags [url]
["--headless=new" "--disable-gpu" url])
["--headless=new" "--disable-gpu" "--no-sandbox" url])

(defn- open []
(p/open {:mode :test
Expand Down

0 comments on commit c988ce9

Please sign in to comment.