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

Jkg/test api with params #96

Draft
wants to merge 65 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
49bc7c2
test'
jkzilla Sep 8, 2022
ab00dd0
test
jkzilla Sep 8, 2022
0bd97c5
test
jkzilla Sep 8, 2022
8573ed7
Test
jkzilla Sep 8, 2022
55c4cb5
tet
jkzilla Sep 8, 2022
ec6be50
Test with cache
jkzilla Sep 8, 2022
71364f8
test
jkzilla Sep 8, 2022
283decc
add package lock json duhhhh
jkzilla Sep 8, 2022
237ae0c
test
jkzilla Sep 8, 2022
dfd6e2a
test
jkzilla Sep 8, 2022
445196b
test
jkzilla Sep 8, 2022
eb164d8
test
jkzilla Sep 8, 2022
0ed9ef3
Test
jkzilla Sep 9, 2022
df69cd8
Test
jkzilla Sep 9, 2022
5a68dcd
Test2
jkzilla Sep 9, 2022
0c96d84
new format
jkzilla Sep 9, 2022
33d936f
is there a checkout
jkzilla Sep 9, 2022
0b738f4
is there a checkout
jkzilla Sep 9, 2022
ab6d740
is there an exit
jkzilla Sep 9, 2022
cbf10ea
is there an exit
jkzilla Sep 9, 2022
da299a4
is there an exit
jkzilla Sep 9, 2022
718a91e
is there an exit 1
jkzilla Sep 9, 2022
a3a24a3
is there a halt
jkzilla Sep 9, 2022
40b2389
test
jkzilla Sep 20, 2022
24cf0f5
test
jkzilla Sep 20, 2022
d69e911
test spacing & heartbeat message
jkzilla Nov 4, 2022
35beee1
test2
jkzilla Nov 4, 2022
e152eae
test
jkzilla Feb 3, 2023
c01e3c0
test
jkzilla Feb 15, 2023
fa6a631
test
jkzilla Feb 15, 2023
bcfc00d
test
jkzilla Feb 15, 2023
34f6aeb
test
jkzilla Feb 15, 2023
2b9d59c
test
jkzilla Feb 15, 2023
9e64037
Test
jkzilla Aug 21, 2023
411e99a
test
jkzilla Aug 21, 2023
c3bd676
Test
jkzilla Aug 21, 2023
22aab04
test executor minus docker
jkzilla Aug 21, 2023
1ac3a8d
test executor with docker
jkzilla Aug 21, 2023
40baa76
test
jkzilla Aug 30, 2023
4acac2e
test
jkzilla Aug 30, 2023
e336299
first
jkzilla Sep 1, 2023
69e69fa
test
jkzilla Sep 19, 2023
3c8c211
Test
jkzilla Sep 19, 2023
57702bb
test
jkzilla Sep 19, 2023
bd6ebb0
test
jkzilla Sep 19, 2023
3c411ba
test
jkzilla Sep 19, 2023
2eddec0
test
jkzilla Sep 19, 2023
2f81460
test
jkzilla Sep 19, 2023
9af0bef
test
jkzilla Sep 19, 2023
ebf27dd
test working directory -PREV REPLICATES
jkzilla Sep 19, 2023
6209233
test
jkzilla Oct 4, 2023
e624bdb
test true boolean
jkzilla Oct 4, 2023
0cf396f
test true boolean and when not
jkzilla Oct 4, 2023
65b5110
test
jkzilla Oct 4, 2023
da17e38
Test unit test workflow should trigger
jkzilla Oct 4, 2023
71119a1
test unit test workflow trigger again
jkzilla Oct 4, 2023
26f9f6d
build artefacts only workflow
jkzilla Oct 4, 2023
d335a2c
test artefacts build and unit test workflow
jkzilla Oct 4, 2023
f1a6a33
build and system test workflow
jkzilla Oct 4, 2023
3452cf3
test update translation
jkzilla Oct 4, 2023
d13ea68
first
jkzilla Oct 4, 2023
82f1e6f
test workflow config 1
jkzilla Oct 4, 2023
0a960b6
added filter tag for prep1
jkzilla Oct 4, 2023
6cc70f6
test
jkzilla Oct 29, 2023
8ad0ac2
test
jkzilla Oct 30, 2023
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
96 changes: 42 additions & 54 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,64 +1,52 @@
version: 2.1
orbs:
node: circleci/[email protected]
heroku: circleci/[email protected]
version: 2.1 # Use version 2.1 to enable Orb usage.

parameters:
skipUnitTests:
description: if set to true will not build the c++ unit tests
type: boolean
default: true
skipSystemTests:
description: if set to true will not build the c++ system tests
type: boolean
default: true
updateTranslation:
description: if set to true will update the translation files
type: boolean
default: true
jobs:
build_and_test:
Prep1:
docker:
- image: cimg/node:17.2.0
- image: cimg/base:edge
steps:
- checkout
- node/install-packages:
pkg-manager: yarn
- run:
command: yarn test
name: Run tests
- run:
command: yarn build
name: Build app
- persist_to_workspace:
root: ~/project
paths:
- .
deploy: # this can be any name you choose
- run: echo "This was triggered by << pipeline.trigger_source >>"
Prep2:
docker:
- image: cimg/node:17.2.0
- image: cimg/base:edge
steps:
- attach_workspace:
at: ~/project
- heroku/deploy-via-git:
force: true # force push when pushing to the heroku remote, see: https://devcenter.heroku.com/articles/git
- checkout
- run: echo "This was triggered by << pipeline.trigger_source >>"
Prep3:
docker:
- image: cimg/base:edge
steps:
- checkout
- run: echo "This was triggered by << pipeline.trigger_source >>"
release:
docker:
- image: cimg/base:edge
parameters:
release_type:
type: string
default: "release"
steps:
- checkout
- run: echo "This was triggered by << pipeline.trigger_source >>"


workflows:
on_commit:
jobs:
- build_and_test
# Follow instructions here to authenticate git for Heroku: https://devcenter.heroku.com/articles/git#http-git-authentication
# The following code may be uncommented, onnce HEROKU_API_KEY & HEROKU_APP_NAME environemnt variables are present
# Read more: https://circleci.com/docs/2.0/env-vars/
# - deploy:
# requires:
# - build_and_test # only deploy if the build_and_test job has completed
# filters:
# branches:
# only: master # only deploy when on main/master
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- master
unit_tests_workflow:
jobs:
- build_and_test
# Follow instructions here to authenticate git for Heroku: https://devcenter.heroku.com/articles/git#http-git-authentication
# The following code may be uncommented, onnce HEROKU_API_KEY & HEROKU_APP_NAME environemnt variables are present
# Read more: https://circleci.com/docs/2.0/env-vars/
# - deploy:
# requires:
# - build_and_test # only deploy if the build_and_test job has completed
# filters:
# branches:
# only: master # only deploy when on main/master
- Prep1
- Prep2
- Prep3
Loading