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

ci/cd: update runner image ubuntu-20.04 -> ubuntu-22.04 #643

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/komodo_linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

linux-build:
name: Linux Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand All @@ -21,9 +21,9 @@ jobs:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update # prevents repo404 errors on apt-remove below
sudo apt-get remove php* msodbcsql17 mysql* powershell dotn*
sudo apt-get update
sudo ACCEPT_EULA=Y apt-get upgrade -y
# sudo apt-get remove php* msodbcsql17 mysql* powershell dotn*
# sudo apt-get update
# sudo ACCEPT_EULA=Y apt-get upgrade -y
sudo apt-get install -q \
curl \
python3 \
Expand All @@ -50,7 +50,7 @@ jobs:
if: ${{ false }}

name: Test (Linux/Dice, Token, Faucet, Rewards)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: linux-build

steps:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
if: ${{ false }}

name: Test (Linux/OraclesCC)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: linux-build

steps:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
if: ${{ false }}

name: Test (Linux/BasicRPC)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: linux-build

steps:
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
if: ${{ false }}

name: Test (Linux/ChannelsCC)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: linux-build

steps:
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
if: ${{ false }}

name: Test (Linux/HeirCC)
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: linux-build

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/komodod_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
linux-build:
name: Linux Build
# using there as old release as possible with GHA worker to provide better compatibility
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:

- name: Extract branch name
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
publish-release:
name: Publishing CD releases
if: ${{ github.event_name != 'workflow_dispatch' }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [linux-build, osx-build, windows-build]
steps:
- name: Download komodo-linux.zip
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ define(_CLIENT_VERSION_BUILD, 0)
define(_ZC_BUILD_VAL, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, m4_incr(_CLIENT_VERSION_BUILD), m4_eval(_CLIENT_VERSION_BUILD < 50), 1, m4_eval(_CLIENT_VERSION_BUILD - 24), m4_eval(_CLIENT_VERSION_BUILD == 50), 1, , m4_eval(_CLIENT_VERSION_BUILD - 50)))
define(_CLIENT_VERSION_SUFFIX, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, _CLIENT_VERSION_REVISION-beta$1, m4_eval(_CLIENT_VERSION_BUILD < 50), 1, _CLIENT_VERSION_REVISION-rc$1, m4_eval(_CLIENT_VERSION_BUILD == 50), 1, _CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION-$1)))
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2024)
define(_COPYRIGHT_YEAR, 2025)
AC_INIT([Komodo],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_SUFFIX(_ZC_BUILD_VAL)],[https://github.com/KomodoPlatform/komodo/issues],[komodo])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([src/config/bitcoin-config.h])
Expand Down
2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
* Copyright year (2009-this)
* Todo: update this when changing our copyright comments in the source
*/
#define COPYRIGHT_YEAR 2024
#define COPYRIGHT_YEAR 2025

#endif //HAVE_CONFIG_H

Expand Down