Skip to content

Commit

Permalink
[FIX]: update packages to fix build failure (#89)
Browse files Browse the repository at this point in the history
Build has been failing for a few nights:
https://github.com/ursacomputing/crossbow/actions/runs/10703992806/job/29675861324

This should fix that. 

cc @jonkeane, @raulcd, @assignUser

---------

Co-authored-by: Jacob Wujciak-Jens <[email protected]>
  • Loading branch information
boshek and assignUser committed Sep 5, 2024
1 parent 89776be commit 73355db
Show file tree
Hide file tree
Showing 4 changed files with 919 additions and 70 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nightly_dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:
runs-on: ubuntu-20.04
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: apache/arrow
path: arrow

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: crossbow

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
cache: pip
python-version: 3.12
Expand All @@ -50,7 +50,7 @@ jobs:

- uses: r-lib/actions/setup-r@v2
with:
r-version: '4.3.1'
r-version: '4.4.0'
use-public-rspm: true

# Needed due to https://github.com/r-lib/actions/issues/618
Expand All @@ -74,7 +74,7 @@ jobs:

- name: Upload Rendered Dashboard
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dashboard
path: |
Expand Down
3 changes: 2 additions & 1 deletion crossbow-nightly-report/crossbow-nightly-report.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ bs_nightly_tbl_sorted %>%
filterable = TRUE,
highlight = TRUE,
wrap = TRUE,
# style = list(fontSize = "0.6rem"),
bordered = TRUE,
defaultPageSize = tbl_row_n,
rowStyle = function(index) {
if (bs_nightly_tbl_sorted[index, "Most Recent Status"] == "failing") {
Expand Down Expand Up @@ -391,6 +391,7 @@ nightly_sub_tbl %>%
filterable = TRUE,
highlight = TRUE,
wrap = TRUE,
bordered = TRUE,
rowStyle = function(index) {
if (nightly_sub_tbl[index, "Task Status"] %in% c("failure", "error")) {
list(background = "#ffe4e4")
Expand Down
Loading

0 comments on commit 73355db

Please sign in to comment.