Skip to content

Commit

Permalink
reviewer remarks
Browse files Browse the repository at this point in the history
Signed-off-by: Dima Dorezyuk <ddo@qwello.eu>
  • Loading branch information
Dima Dorezyuk committed Nov 21, 2023
1 parent bc6a502 commit 09d6be2
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/linux-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@ on: [workflow_dispatch, pull_request]
jobs:
build:
name: Build
strategy:
matrix:
os: [large-ubuntu-22.04-xxl]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-22.04
steps:
- name: Format branch name for cache key
run: |
BRANCH_NAME_FOR_CACHE="${GITHUB_REF_NAME//-/_}"
echo "branch_name_for_cache=${BRANCH_NAME_FOR_CACHE}" >> "$GITHUB_ENV"
- name: Setup cache
uses: actions/cache@v3
with:
path: cache
key: compile-${{ github.ref }}-${{ github.sha }}
key: compile-${{ env.branch_name_for_cache }}-${{ github.sha }}
restore-keys: |
compile-${{ github.ref }}-
compile-${{ env.branch_name_for_cache }}-
compile-
- name: Checkout everest-framework
- name: Checkout everest-core
uses: actions/checkout@v3
with:
path: source
Expand All @@ -36,7 +37,7 @@ jobs:
run: |
docker pull --quiet ghcr.io/everest/build-kit-debian:latest
docker image tag ghcr.io/everest/build-kit-debian:latest build-kit
- name: Compile
- name: Compile and Test
run: |
docker run \
--volume "$(pwd):/ext" \
Expand Down

0 comments on commit 09d6be2

Please sign in to comment.