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
name: Docker (build and local) ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: docker-practice/actions-setup-docker@master | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wget curl | |
- name: install s | |
run: | | |
npm i @xsahxl/[email protected] -g | |
- name: config s | |
run: | | |
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f | |
- name: NPM install | |
run: | | |
npm install | |
- name: NPM run build | |
run: | | |
npm run build | |
- name: test python | |
run: | | |
cd python && ./run && cd - | |
nodejs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: docker-practice/actions-setup-docker@master | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wget curl | |
- name: npm install s | |
run: | | |
npm i @xsahxl/[email protected] -g | |
- name: s config | |
run: | | |
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f | |
- name: NPM install | |
run: | | |
npm install | |
- name: NPM run build | |
run: | | |
npm run build | |
- name: test nodejs | |
run: | | |
cd nodejs && ./run && cd - | |
custom: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: docker-practice/actions-setup-docker@master | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org/ | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wget curl | |
- name: npm install s | |
run: | | |
npm i @xsahxl/[email protected] -g | |
- name: s config | |
run: | | |
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f | |
- name: NPM install | |
run: | | |
npm install | |
- name: NPM run build | |
run: | | |
npm run build | |
- name: test custom.debian10 | |
run: | | |
cd custom.debian10 && ./run && cd - | |
- name: test custom | |
run: | | |
cd custom && ./run && cd - | |
# - name: test custom container | |
# run: | | |
# cd custom-container && ./run && cd - | |
other-runtimes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: docker-practice/actions-setup-docker@master | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org/ | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Set up Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wget curl | |
- name: npm install s | |
run: | | |
npm i @xsahxl/[email protected] -g | |
- name: s config | |
run: | | |
s3 config add --AccessKeyID ${{secrets.ACCESSKEYID}} --AccessKeySecret ${{secrets.ACCESSKEYSECRET}} -a quanxi -f | |
- name: NPM install | |
run: | | |
npm install | |
- name: NPM run build | |
run: | | |
npm run build | |
- name: test golang | |
run: | | |
cd go && ./run && cd - | |
- name: test php | |
run: | | |
cd php && ./run && cd - | |
- name: test java | |
run: | | |
cd java && ./run && cd - | |
- name: test dotnetcore | |
run: | | |
cd dotnetcore && ./run && cd - | |
- name: test apt | |
run: | | |
cd apt && ./run && cd - |