Continuous Integration Build Artifacts xml files converted to yml
This commit is contained in:
parent
90b59d6975
commit
76840ec05f
|
@ -18,7 +18,17 @@ jobs:
|
||||||
path: '.'
|
path: '.'
|
||||||
- name: get PR number
|
- name: get PR number
|
||||||
run: |
|
run: |
|
||||||
echo ::set-env name=PR||${./tea pr ls -f=base,head,index | grep "| master | firstString=${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1}
|
curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output tea
|
||||||
|
chmod +x ./tea
|
||||||
|
./tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.TEA_TOKEN }}
|
||||||
|
./tea pr ls
|
||||||
|
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |"
|
||||||
|
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' '
|
||||||
|
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n"
|
||||||
|
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 |
|
||||||
|
./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1
|
||||||
|
echo ::set-env name=PR::${./tea pr ls -f=base,head,index | grep "| master | ${{ github.ref_name }} |" | tr -d ' ' | tr "|" "\n" | head -n 4 | tail -1}
|
||||||
|
rm ./tea
|
||||||
- name: get build branch name
|
- name: get build branch name
|
||||||
run: |
|
run: |
|
||||||
firstString=${{ github.ref_name }}
|
firstString=${{ github.ref_name }}
|
||||||
|
|
|
@ -36,7 +36,6 @@ jobs:
|
||||||
mv .git/config ../cloned/.git
|
mv .git/config ../cloned/.git
|
||||||
rm -r ./*
|
rm -r ./*
|
||||||
rm -r .git
|
rm -r .git
|
||||||
ls
|
|
||||||
mv ../cloned/* .
|
mv ../cloned/* .
|
||||||
mv ../cloned/.git .
|
mv ../cloned/.git .
|
||||||
|
|
||||||
|
@ -65,3 +64,4 @@ jobs:
|
||||||
if [[ $(./tea pr ls -f=base,head | grep "| master | ${{ env.PRODUCTION_BRANCH }} |" | head -c1 | wc -c) -eq 0 ]]; then
|
if [[ $(./tea pr ls -f=base,head | grep "| master | ${{ env.PRODUCTION_BRANCH }} |" | head -c1 | wc -c) -eq 0 ]]; then
|
||||||
./tea pr c --base=master --head=${{ env.PRODUCTION_BRANCH }} --description="development pull request" -t="WIP: ${{ github.event.head_commit.message }}"
|
./tea pr c --base=master --head=${{ env.PRODUCTION_BRANCH }} --description="development pull request" -t="WIP: ${{ github.event.head_commit.message }}"
|
||||||
fi
|
fi
|
||||||
|
rm ./tea
|
||||||
|
|
208
README.md
208
README.md
|
@ -1,104 +1,104 @@
|
||||||
# batch-example
|
# batch-example
|
||||||
|
|
||||||
This repository will store and allow versioning and approval of a batch configuration.
|
This repository will store and allow versioning and approval of a batch configuration
|
||||||
|
|
||||||
This repository **only** contains exported configuration. It does not contain any binary files (eg equipment-model.cfg nor system state or log files). These are excluded using the **.gitignore** file.
|
This repository **only** contains exported configuration. It does not contain any binary files (eg equipment-model.cfg nor system state or log files). These are excluded using the **.gitignore** file.
|
||||||
|
|
||||||
## change process
|
## change process
|
||||||
|
|
||||||
tea is here (i had to change docker file to just be based on node:latest)
|
tea is here (i had to change docker file to just be based on node:latest)
|
||||||
|
|
||||||
https://gitea.com/gitea/tea/src/branch/main/docs/CLI.md
|
https://gitea.com/gitea/tea/src/branch/main/docs/CLI.md
|
||||||
|
|
||||||
|
|
||||||
On ?tag ? push to master
|
On ?tag ? push to master
|
||||||
clone master
|
clone master
|
||||||
branch deployed
|
branch deployed
|
||||||
yml -> xml
|
yml -> xml
|
||||||
push deployed
|
push deployed
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
pull to production PC and import.
|
pull to production PC and import.
|
||||||
|
|
||||||
pull to development, import, modify, export
|
pull to development, import, modify, export
|
||||||
push from development to format branch
|
push from development to format branch
|
||||||
|
|
||||||
on format-branch pull, xml -> yml, push to product-development and PR
|
on format-branch pull, xml -> yml, push to product-development and PR
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### FTBatch development pc on development branch
|
### FTBatch development pc on development branch
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
?git branch -D format-branch
|
?git branch -D format-branch
|
||||||
git checkout format-branch
|
git checkout format-branch
|
||||||
git merge deployed
|
git merge deployed
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
make changes and export files
|
make changes and export files
|
||||||
|
|
||||||
commit and push back to server
|
commit and push back to server
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git add -A
|
git add -A
|
||||||
git commit
|
git commit
|
||||||
git push origin format-branch
|
git push origin format-branch
|
||||||
```
|
```
|
||||||
|
|
||||||
### format-bot pc
|
### format-bot pc
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git branch -D format-branch
|
git branch -D format-branch
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git checkout -b format-branch
|
git checkout -b format-branch
|
||||||
git checkout master
|
git checkout master
|
||||||
git pull
|
git pull
|
||||||
git branch -D product-development
|
git branch -D product-development
|
||||||
git checkout -b product-development
|
git checkout -b product-development
|
||||||
git merge --squash --no-commit --no-ff --strategyoption=theirs format-branch
|
git merge --squash --no-commit --no-ff --strategyoption=theirs format-branch
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
run the formatter
|
run the formatter
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git add -A
|
git add -A
|
||||||
git commit
|
git commit
|
||||||
git push origin product-development
|
git push origin product-development
|
||||||
git push origin --delete format-branch
|
git push origin --delete format-branch
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
create a pull request
|
create a pull request
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
gotea pr c --base=master --head=product-development --repo another-user/batch-example --title="WIP: this is a PR! it rocks!"
|
gotea pr c --base=master --head=product-development --repo another-user/batch-example --title="WIP: this is a PR! it rocks!"
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
closing a pull request (not used)
|
closing a pull request (not used)
|
||||||
```sh
|
```sh
|
||||||
gotea pr close --repo another-user/batch-example 11
|
gotea pr close --repo another-user/batch-example 11
|
||||||
```
|
```
|
||||||
|
|
||||||
build
|
build
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
||||||
git checkout master
|
git checkout master
|
||||||
git pull
|
git pull
|
||||||
git checkout deployed
|
git checkout deployed
|
||||||
git merge master
|
git merge master
|
||||||
```
|
```
|
||||||
|
|
||||||
make xml files
|
make xml files
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git add -A
|
git add -A
|
||||||
git commit
|
git commit
|
||||||
git push origin deployed
|
git push origin deployed
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue