From b3e3d15be3a0cd173953ce3d721dd9111f1c300f Mon Sep 17 00:00:00 2001 From: Marie Idleman Date: Fri, 17 Jan 2025 14:50:12 -0600 Subject: [PATCH 1/4] libicu-dev --- .github/actions/setup-test-env/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/setup-test-env/action.yml b/.github/actions/setup-test-env/action.yml index 8e337d53350..4ca2d8e9e9e 100644 --- a/.github/actions/setup-test-env/action.yml +++ b/.github/actions/setup-test-env/action.yml @@ -49,3 +49,9 @@ runs: uses: ./.github/actions/install-r with: version: "4.4.0" + + - name: Install libicu-dev (needed for Quarto) + run: | + sudo apt-get update + sudo apt-get install libicu-dev + shell: bash From bb6b4962290644fd0087ce13a5ebc7c5ac63353c Mon Sep 17 00:00:00 2001 From: Marie Idleman Date: Fri, 17 Jan 2025 15:14:05 -0600 Subject: [PATCH 2/4] add tmate --- .github/workflows/test-e2e-linux.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-e2e-linux.yml b/.github/workflows/test-e2e-linux.yml index 5ba3a65bf1b..bbf315b4e0b 100644 --- a/.github/workflows/test-e2e-linux.yml +++ b/.github/workflows/test-e2e-linux.yml @@ -130,6 +130,9 @@ jobs: - name: Alter AppArmor Restrictions for Playwright (Electron) run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + - name: Run Playwright Tests (Electron) env: POSITRON_PY_VER_SEL: 3.12.3 From 6b821387b48752e7b6b7da3d53e22eeabf1e21df Mon Sep 17 00:00:00 2001 From: Marie Idleman Date: Fri, 17 Jan 2025 15:55:43 -0600 Subject: [PATCH 3/4] change r profile --- .github/actions/install-r/action.yml | 6 +++--- .github/actions/setup-test-env/action.yml | 6 ------ .github/workflows/test-e2e-linux.yml | 3 --- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/actions/install-r/action.yml b/.github/actions/install-r/action.yml index 5cc2189b263..f546d78c4b1 100644 --- a/.github/actions/install-r/action.yml +++ b/.github/actions/install-r/action.yml @@ -17,13 +17,13 @@ runs: curl -Ls /~https://github.com/r-lib/rig/releases/download/latest/rig-linux-"$(arch)"-latest.tar.gz | sudo tar xz -C /usr/local rig add "$R_VERSION" - - name: Configure Posit PPM for Ubuntu 22.04 with Custom HTTP User-Agent + - name: Configure Posit PPM for Ubuntu 24.04 with Custom HTTP User-Agent shell: bash run: | - echo "Configuring R to use Posit Package Manager for Jammy..." + echo "Configuring R to use Posit Package Manager for Ubuntu 24.04..." cat < ~/.Rprofile options( - repos = c(RSPM = "https://packagemanager.posit.co/cran/__linux__/jammy/latest"), + repos = c(RSPM = "https://packagemanager.posit.co/cran/__linux__/lunar/latest"), HTTPUserAgent = sprintf( "R/%s (%s) R (%s)", getRversion(), "ubuntu-2404", diff --git a/.github/actions/setup-test-env/action.yml b/.github/actions/setup-test-env/action.yml index 4ca2d8e9e9e..8e337d53350 100644 --- a/.github/actions/setup-test-env/action.yml +++ b/.github/actions/setup-test-env/action.yml @@ -49,9 +49,3 @@ runs: uses: ./.github/actions/install-r with: version: "4.4.0" - - - name: Install libicu-dev (needed for Quarto) - run: | - sudo apt-get update - sudo apt-get install libicu-dev - shell: bash diff --git a/.github/workflows/test-e2e-linux.yml b/.github/workflows/test-e2e-linux.yml index bbf315b4e0b..5ba3a65bf1b 100644 --- a/.github/workflows/test-e2e-linux.yml +++ b/.github/workflows/test-e2e-linux.yml @@ -130,9 +130,6 @@ jobs: - name: Alter AppArmor Restrictions for Playwright (Electron) run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 - - name: Run Playwright Tests (Electron) env: POSITRON_PY_VER_SEL: 3.12.3 From 30fc441b9d0e33b21f365ac471597abc974ae87c Mon Sep 17 00:00:00 2001 From: Chris Mead Date: Fri, 17 Jan 2025 15:07:43 -0700 Subject: [PATCH 4/4] lunar -> noble --- .github/actions/install-r/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-r/action.yml b/.github/actions/install-r/action.yml index f546d78c4b1..9bc3713508d 100644 --- a/.github/actions/install-r/action.yml +++ b/.github/actions/install-r/action.yml @@ -23,7 +23,7 @@ runs: echo "Configuring R to use Posit Package Manager for Ubuntu 24.04..." cat < ~/.Rprofile options( - repos = c(RSPM = "https://packagemanager.posit.co/cran/__linux__/lunar/latest"), + repos = c(RSPM = "https://packagemanager.posit.co/cran/__linux__/noble/latest"), HTTPUserAgent = sprintf( "R/%s (%s) R (%s)", getRversion(), "ubuntu-2404",