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

Ubuntu-20-04 #49

Open
wants to merge 2 commits into
base: develop
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
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
permissions:
packages: write
contents: write # publish sbom to GH releases/tag assets
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -47,7 +47,7 @@ jobs:
matrix:
os:
- macos-latest
- ubuntu-latest
- ubuntu-20.04
libcurl-release:
- 7.79.1
node-libcurl-cpp-std:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
matrix:
os:
- macos-latest
- ubuntu-latest
- ubuntu-20.04
libcurl-release:
- 7.79.1
node:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
permissions:
packages: write
contents: write # publish sbom to GH releases/tag assets
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -41,7 +41,7 @@ jobs:
matrix:
os:
- macos-latest
- ubuntu-latest
- ubuntu-20.04
libcurl-release:
- 7.79.1
node-libcurl-cpp-std:
Expand All @@ -50,7 +50,7 @@ jobs:
- 20.11.1
include:
# Lint
- os: ubuntu-latest
- os: ubuntu-20.04
node: 20.11.1
node-libcurl-cpp-std: c++17
libcurl-release: 7.79.1
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
matrix:
os:
- macos-latest
- ubuntu-latest
- ubuntu-20.04
libcurl-release:
- 7.79.1
node:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
permissions:
contents: write
id-token: write # For using token to sign images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
semgrep:
name: Semgrep SAST
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
permissions:
# required for all workflows
security-events: write
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ ls -al $LIBSSH2_BUILD_FOLDER/lib
###################
# Build openldap
###################
OPENLDAP_RELEASE=${OPENLDAP_RELEASE:-2.4.47}
OPENLDAP_RELEASE=${OPENLDAP_RELEASE:-2.6.8}
OPENLDAP_DEST_FOLDER=$PREFIX_DIR/deps/openldap
echo "Building openldap v$OPENLDAP_RELEASE"
./scripts/ci/build-openldap.sh $OPENLDAP_RELEASE $OPENLDAP_DEST_FOLDER >$LOGS_FOLDER/build-openldap.log 2>&1
Expand Down
Loading