-
Notifications
You must be signed in to change notification settings - Fork 78
71 lines (66 loc) · 1.93 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: CI
on:
push:
branches: [ master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
javaVersion: [1.8]
mcVersionIndex: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
include:
- javaVersion: 16
mcVersionIndex: 10
- javaVersion: 17
mcVersionIndex: 11
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Setup Java JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.javaVersion }}
java-package: jre
- name: Install xi
run: sudo apt-get install -y libxi-dev libglu1-mesa-dev
- run: npm install
- env:
CIRCLE_NODE_INDEX: ${{ matrix.mcVersionIndex }}
CIRCLE_NODE_TOTAL: 12
run: npm test
- uses: actions/upload-artifact@v2
with:
name: test_picture
path: test/test_*.png
DeployPages:
runs-on: ubuntu-latest
needs: build
if: ${{ github.event_name == 'push' }}
steps:
- name: Checkout 🛎️
uses: actions/[email protected] # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
ref: 'gh-pages'
persist-credentials: false
- name: Download build
uses: actions/download-artifact@v2
with:
name: test_picture
- name: Create commits
run: |
git config user.name 'rom1504bot'
git config user.email '[email protected]'
git add --all
git commit --amend -m "Update gh-pages"
- name: Deploy 🚀
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true