fix github actions 2 #3
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: ${{ matrix.os }} | |
strategy: | |
max-parallel: 2 | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-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 && apt-get install -y wget curl | |
brew install wget | |
choco install -y wget | |
choco install -y 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: test python | |
run: | | |
cd python && ./run && cd - | |
nodejs: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 2 | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-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 && apt-get install -y wget curl | |
brew install wget | |
choco install -y wget | |
choco install -y 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: test nodejs | |
run: | | |
cd nodejs && ./run && cd - | |
custom: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 2 | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-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 && apt-get install -y wget curl | |
brew install wget | |
choco install -y wget | |
choco install -y 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: 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: ${{ matrix.os }} | |
strategy: | |
max-parallel: 2 | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-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 && apt-get install -y wget curl | |
brew install wget | |
choco install -y wget | |
choco install -y 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: 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 - |