Skip to content

Commit

Permalink
fix github acitons
Browse files Browse the repository at this point in the history
  • Loading branch information
rsonghuster authored Sep 15, 2023
1 parent 780cea7 commit 46988aa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_node14.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: FC3.0 component base ci with FC3.0 nodejs14
name: Nodejs14 base ci

on:
push:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
npm run build
- name: run base ci
run: |
export RANDSTR=github_14 && cd __tests__/e2e && bash -c ci.sh && cd -
export RANDSTR=github_14 && cd __tests__/e2e && ./ci.sh && cd -
- name: run trigger ci
run: |
export RANDSTR=github_14 && cd __tests__/e2e && bash -c ci_trigger.sh && cd -
export RANDSTR=github_14 && cd __tests__/e2e && ./ci_trigger.sh && cd -
6 changes: 3 additions & 3 deletions .github/workflows/ci_node16.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: FC3.0 component base ci with nodejs16
name: Nodejs16 base ci

on:
push:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
npm run build
- name: run base ci
run: |
export RANDSTR=github_16 && cd __tests__/e2e && bash -c ci.sh && cd -
export RANDSTR=github_16 && cd __tests__/e2e && ./ci.sh && cd -
- name: run trigger ci
run: |
export RANDSTR=github_16 && cd __tests__/e2e && bash -c ci_trigger.sh && cd -
export RANDSTR=github_16 && cd __tests__/e2e && ./ci_trigger.sh && cd -
22 changes: 11 additions & 11 deletions .github/workflows/ci_with_docker.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: FC3.0 component ci with docker (build and local)
name: Docker (build and local) ci

on:
push:
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
- name: test python
run: |
cd python && bash run && cd -
cd python && ./run && cd -
nodejs:
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -54,7 +54,7 @@ jobs:
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
- name: test nodejs
run: |
cd nodejs && bash run && cd -
cd nodejs && ./run && cd -
custom:
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -77,13 +77,13 @@ jobs:
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
- name: test custom.debian10
run: |
cd custom.debian10 && bash run && cd -
cd custom.debian10 && ./run && cd -
- name: test custom
run: |
cd custom && bash run && cd -
cd custom && ./run && cd -
# - name: test custom container
# run: |
# cd custom-container && bash run && cd -
# cd custom-container && ./run && cd -
other-runtimes:
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -106,16 +106,16 @@ jobs:
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f
- name: test golang
run: |
cd go && bash run && cd -
cd go && ./run && cd -
- name: test php
run: |
cd php && bash run && cd -
cd php && ./run && cd -
- name: test java
run: |
cd java && bash run && cd -
cd java && ./run && cd -
- name: test dotnetcore
run: |
cd dotnetcore && bash run && cd -
cd dotnetcore && ./run && cd -
- name: test apt
run: |
cd apt && bash run && cd -
cd apt && ./run && cd -

0 comments on commit 46988aa

Please sign in to comment.