Skip to content

Commit

Permalink
test: update actions/checkout version 4 to use nodejs version 20
Browse files Browse the repository at this point in the history
  • Loading branch information
rajeev-0 committed Mar 18, 2024
1 parent 97e292f commit dba9f5e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: cmake
run: |
cmake .
Expand All @@ -32,7 +32,7 @@ jobs:
build_doc_this:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: build_doc_this
run: |
# would need access to azure.archive.ubuntu.com:
Expand All @@ -48,19 +48,25 @@ jobs:
test_all:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Fix kernel mmap rnd bits
# Asan in llvm 14 provided in ubuntu 22.04 is incompatible with
# high-entropy ASLR in much newer kernels that GitHub runners are
# using leading to random crashes: https://reviews.llvm.org/D148280
run: sudo sysctl vm.mmap_rnd_bits=28
- name: test_all
run: |
# would need access to azure.archive.ubuntu.com:
# sudo apt-get update
# sudo apt-get install -y >/dev/null libssl-dev build-essential # not needed
USE_LIBCMP=1 make -f Makefile_v1 build test_all
USE_LIBCMP=1 make -f Makefile_v1 build test_Mock test
doc_deb:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: doc_deb
run: |
# needs access to azure.archive.ubuntu.com:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/quality_check_sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Makefile_v1
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ else
endif

.phony: demo demo_all demo_Insta demo_EJBCA demo_CloudCA
demo: demo_Insta
demo: demo_EJBCA
demo_all: demo demo_EJBCA demo_CloudCA
demo_Insta: get_Insta_crls
$(MAKE) -f Makefile_v1 run_demo BIN_DIR="$(BIN_DIR)" CA_SECTION="Insta" SLEEP="sleep 1"
Expand Down

0 comments on commit dba9f5e

Please sign in to comment.