-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from capralifecycle/jol/CALS-711/migrate-to-g…
…ithub-actions Switch from jenkins to github actions
- Loading branch information
Showing
2 changed files
with
74 additions
and
52 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- "**" | ||
|
||
defaults: | ||
run: | ||
# NOTE: A bit stricter than the default bash options used by GitHub Actions | ||
# (bash --noprofile --norc -e -o pipefail {0}) | ||
shell: bash --noprofile --norc -euo pipefail {0} | ||
|
||
# NOTE: Set concurrency for the current workflow to 1 | ||
concurrency: ci-${{ github.ref }}-${{ github.workflow }} | ||
|
||
jobs: | ||
build-and-release: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
issues: write | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
|
||
- uses: capralifecycle/actions-lib/check-runtime-dependencies@42cbe330ccc0282f04edbf0a6ee8928b5b2c4df0 # v1.1.0 | ||
|
||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 | ||
with: | ||
node-version: 18.19.0 | ||
|
||
- uses: capralifecycle/actions-lib/configure-npm@42cbe330ccc0282f04edbf0a6ee8928b5b2c4df0 # v1.1.0 | ||
|
||
- uses: actions/setup-python@v5 | ||
id: setup-python | ||
with: | ||
python-version: 3.8.18 | ||
|
||
- name: python - setup dependency cache | ||
uses: actions/cache@v4 | ||
with: | ||
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }} | ||
path: .venv | ||
|
||
- name: python - install dependencies | ||
run: | | ||
python -m venv .venv | ||
source .venv/bin/activate | ||
python -m pip install -r requirements.txt | ||
echo "$VIRTUAL_ENV/bin" >> $GITHUB_PATH | ||
echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV | ||
- name: python - lint | ||
run: make py-lint | ||
|
||
- name: python - test | ||
run: make py-test | ||
|
||
- name: npm - install dependencies | ||
run: npm ci | ||
|
||
- name: npm - lint | ||
run: npm run lint | ||
|
||
- name: npm - test | ||
run: npm test | ||
|
||
- name: conditionally semantic release | ||
if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.SHARED_NPMJS_TOKEN }} | ||
run: npm run semantic-release |
This file was deleted.
Oops, something went wrong.