From 628a85dc93a51c98ae3276017bcc9dbbd109c603 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Wed, 21 Jun 2023 10:54:07 +1000 Subject: [PATCH 1/2] Add Ubuntu 23.04 Instructions (#2437) * Add Ubuntu 23.04 Instructions --- docs/INSTALL.md | 2 +- docs/ubuntu-package-install.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 6c0ebf1d..8000bcfc 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -27,7 +27,7 @@ Distribution packages may be of an older release when compared to the latest rel | Solus | [onedrive](https://dev.getsol.us/search/query/FB7PIf1jG9Z9/#R) |Solus package|✔|✔|❌|❌| | | Ubuntu 20.04 | [onedrive](https://packages.ubuntu.com/focal/onedrive) |Ubuntu 20.04 package |❌|✔|✔|✔| **Note:** Do not install from Ubuntu Universe

It is recommended that for Ubuntu that you install from OpenSuSE Build Service using the Ubuntu Package Install [Instructions](ubuntu-package-install.md) | | Ubuntu 22.04 | [onedrive](https://packages.ubuntu.com/jammy/onedrive) |Ubuntu 22.04 package |❌|✔|✔|✔| **Note:** Do not install from Ubuntu Universe

It is recommended that for Ubuntu that you install from OpenSuSE Build Service using the Ubuntu Package Install [Instructions](ubuntu-package-install.md) | -| Ubuntu 23.04 | [onedrive](https://packages.ubuntu.com/lunar/onedrive) |Ubuntu 23.04 package |❌|✔|✔|✔| Install from Ubuntu Universe using the standard Ubuntu package installation process | +| Ubuntu 23.04 | [onedrive](https://packages.ubuntu.com/lunar/onedrive) |Ubuntu 23.04 package |❌|✔|✔|✔| **Note:** Do not install from Ubuntu Universe

It is recommended that for Ubuntu that you install from OpenSuSE Build Service using the Ubuntu Package Install [Instructions](ubuntu-package-install.md) | | Void Linux | [onedrive](https://voidlinux.org/packages/?arch=x86_64&q=onedrive) |Void Linux x86_64 package|✔|✔|❌|❌| | #### Important information for all Ubuntu and Ubuntu based distribution users: diff --git a/docs/ubuntu-package-install.md b/docs/ubuntu-package-install.md index 475af2e2..9394d4b0 100644 --- a/docs/ubuntu-package-install.md +++ b/docs/ubuntu-package-install.md @@ -146,6 +146,7 @@ If required, review the table below based on your 'lsb_release' information to p | Ubuntu 21.10 / Impish | Use [Ubuntu 21.10](#distribution-ubuntu-2110) instructions below | | Ubuntu 22.04 / Jammy | Use [Ubuntu 22.04](#distribution-ubuntu-2204) instructions below | | Ubuntu 22.10 / Kinetic | Use [Ubuntu 22.10](#distribution-ubuntu-2210) instructions below | +| Ubuntu 23.04 / Lunar | Use [Ubuntu 23.04](#distribution-ubuntu-2304) instructions below | ## Distribution Package Install Instructions @@ -311,6 +312,33 @@ Run: `sudo apt install --no-install-recommends --no-install-suggests onedrive` #### Step 5: Read 'Known Issues' with these packages Read and understand the [known issues](#known-issues-with-installing-from-the-above-packages) with these packages below, taking any action that is needed. +### Distribution: Ubuntu 23.04 +The packages support the following platform architectures: +|  i686  | x86_64 | ARMHF | AARCH64 | +|:----:|:------:|:-----:|:-------:| +❌|✔|✔|✔| | + +#### Step 1: Add the OpenSuSE Build Service repository release key +Add the OpenSuSE Build Service repository release key using the following command: +```text +wget -qO - https://download.opensuse.org/repositories/home:/npreining:/debian-ubuntu-onedrive/xUbuntu_23.04/Release.key | gpg --dearmor | sudo tee /usr/share/keyrings/obs-onedrive.gpg > /dev/null +``` + +#### Step 2: Add the OpenSuSE Build Service repository +Add the OpenSuSE Build Service repository using the following command: +```text +echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/obs-onedrive.gpg] https://download.opensuse.org/repositories/home:/npreining:/debian-ubuntu-onedrive/xUbuntu_23.04/ ./" | sudo tee /etc/apt/sources.list.d/onedrive.list +``` + +#### Step 3: Update your apt package cache +Run: `sudo apt-get update` + +#### Step 4: Install 'onedrive' +Run: `sudo apt install --no-install-recommends --no-install-suggests onedrive` + +#### Step 5: Read 'Known Issues' with these packages +Read and understand the [known issues](#known-issues-with-installing-from-the-above-packages) with these packages below, taking any action that is needed. + ## Known Issues with Installing from the above packages ### 1. The client may segfault | core-dump when exiting From 4b32dbf12dbf92329587ba39f1159359d63dfe59 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Wed, 21 Jun 2023 11:15:56 +1000 Subject: [PATCH 2/2] Update testbuild.yaml (#2439) * Update testbuild.yaml and downgrade to Ubuntu 20.04 --- .github/workflows/testbuild.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testbuild.yaml b/.github/workflows/testbuild.yaml index bec5f833..1105fc2a 100644 --- a/.github/workflows/testbuild.yaml +++ b/.github/workflows/testbuild.yaml @@ -9,7 +9,8 @@ on: jobs: build: - runs-on: ubuntu-latest + #runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Check out code from GitHub @@ -19,7 +20,9 @@ jobs: fetch-depth: 0 - name: Update Image - run: sudo apt-get update -y + run: | + sudo apt-get clean + sudo apt-get update -y - name: Install build-essential run: sudo apt install -y build-essential