changes the means to compute the version for packages #708
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
name: PDO CI | |
on: [pull_request, push] | |
jobs: | |
pdo_ci: | |
if: "!contains(github.event.commits[0].message, '[skip ci]')" | |
name: PDO CI Job | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
interpreter: [wawaka, wawaka-opt] | |
pdo_ledger_type: [ccf] | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Display branch name | |
run: | | |
echo "GITHUB_HEAD_REF=$GITHUB_HEAD_REF" | |
echo "GITHUB_REF=$GITHUB_REF" | |
bin/get_version | |
- name: Set up the environment for the version and branch | |
run: | | |
echo PDO BRANCH is ${{ github.head_ref }} | |
echo "PDO_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV | |
- name: Checkout the branch | |
run: | | |
. build/common-config.sh | |
make -C docker repository | |
- name: Build and run tests | |
if: "!contains(github.event.commits[0].message, '[debug]')" | |
env: | |
PDO_INTERPRETER: ${{ matrix.interpreter }} | |
PDO_LOG_LEVEL: warning | |
run: | | |
# The creation of a dummy branch is necessary for the CI tests | |
# to work on PRs. Based on empirical results, in the absence of | |
# this command, CI tests work on the main branch and on local | |
# branches. However, they fail as a PR is created. | |
git checkout -b ci-test-branch | |
. build/common-config.sh | |
# make -C docker test | |
- name: Build and run tests (DEBUG MODE) | |
if: "contains(github.event.commits[0].message, '[debug]')" | |
env: | |
PDO_INTERPRETER: ${{ matrix.interpreter }} | |
PDO_LOG_LEVEL: debug | |
run: | | |
# The creation of a dummy branch is necessary for the CI tests | |
# to work on PRs. Based on empirical results, in the absence of | |
# this command, CI tests work on the main branch and on local | |
# branches. However, they fail as a PR is created. | |
git checkout -b ci-test-branch | |
. build/common-config.sh | |
make -C docker test |