Skip to content

Commit a995e56

Browse files
committed
ci: comment out other builds
1 parent a59cb7d commit a995e56

File tree

3 files changed

+248
-248
lines changed

3 files changed

+248
-248
lines changed

.github/workflows/linter.yml

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
1-
---
2-
#################################
3-
#################################
4-
## Super Linter GitHub Actions ##
5-
#################################
6-
#################################
7-
name: Lint Code Base
8-
9-
#############################
10-
# Start the job on all push #
11-
#############################
12-
on:
13-
push:
14-
branches-ignore: [main]
15-
# Remove the line above to run when pushing to master
16-
pull_request:
17-
branches: [main]
18-
19-
###############
20-
# Set the Job #
21-
###############
22-
jobs:
23-
build:
24-
# Name the Job
25-
name: Lint Code Base
26-
# Set the agent to run on
27-
runs-on: ubuntu-latest
28-
29-
############################################
30-
# Grant status permission for MULTI_STATUS #
31-
############################################
32-
permissions:
33-
contents: read
34-
packages: read
35-
statuses: write
36-
37-
##################
38-
# Load all steps #
39-
##################
40-
steps:
41-
##########################
42-
# Checkout the code base #
43-
##########################
44-
- name: Checkout Code
45-
uses: actions/checkout@v3
46-
with:
47-
# Full git history is needed to get a proper
48-
# list of changed files within `super-linter`
49-
fetch-depth: 0
50-
51-
################################
52-
# Run Linter against code base #
53-
################################
54-
- name: Lint Code Base
55-
uses: github/super-linter@v5
56-
env:
57-
VALIDATE_ALL_CODEBASE: true
58-
DEFAULT_BRANCH: main
59-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60-
FILTER_REGEX_EXCLUDE: (.*src/Packages/Passport/Runtime/ThirdParty/.*|.*src/Packages/Passport/Runtime/Resources/.*|.*Plugins/.*|.*src/Packages/Passport/Runtime/Assets/ImmutableAndroid.androidlib/.*|.*src/Packages/Orderbook|.*src/Packages/ZkEvmApi/.*|.*sample|.*src/Packages/Passport/WebGLTemplates~|.*.github/workflows)
61-
VALIDATE_MARKDOWN: false
62-
VALIDATE_GITLEAKS: false
63-
VALIDATE_JSCPD: false
64-
VALIDATE_SHELL_SHFMT: false
1+
#---
2+
##################################
3+
##################################
4+
### Super Linter GitHub Actions ##
5+
##################################
6+
##################################
7+
#name: Lint Code Base
8+
#
9+
##############################
10+
## Start the job on all push #
11+
##############################
12+
#on:
13+
# push:
14+
# branches-ignore: [main]
15+
# # Remove the line above to run when pushing to master
16+
# pull_request:
17+
# branches: [main]
18+
#
19+
################
20+
## Set the Job #
21+
################
22+
#jobs:
23+
# build:
24+
# # Name the Job
25+
# name: Lint Code Base
26+
# # Set the agent to run on
27+
# runs-on: ubuntu-latest
28+
#
29+
# ############################################
30+
# # Grant status permission for MULTI_STATUS #
31+
# ############################################
32+
# permissions:
33+
# contents: read
34+
# packages: read
35+
# statuses: write
36+
#
37+
# ##################
38+
# # Load all steps #
39+
# ##################
40+
# steps:
41+
# ##########################
42+
# # Checkout the code base #
43+
# ##########################
44+
# - name: Checkout Code
45+
# uses: actions/checkout@v3
46+
# with:
47+
# # Full git history is needed to get a proper
48+
# # list of changed files within `super-linter`
49+
# fetch-depth: 0
50+
#
51+
# ################################
52+
# # Run Linter against code base #
53+
# ################################
54+
# - name: Lint Code Base
55+
# uses: github/super-linter@v5
56+
# env:
57+
# VALIDATE_ALL_CODEBASE: true
58+
# DEFAULT_BRANCH: main
59+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60+
# FILTER_REGEX_EXCLUDE: (.*src/Packages/Passport/Runtime/ThirdParty/.*|.*src/Packages/Passport/Runtime/Resources/.*|.*Plugins/.*|.*src/Packages/Passport/Runtime/Assets/ImmutableAndroid.androidlib/.*|.*src/Packages/Orderbook|.*src/Packages/ZkEvmApi/.*|.*sample|.*src/Packages/Passport/WebGLTemplates~|.*.github/workflows)
61+
# VALIDATE_MARKDOWN: false
62+
# VALIDATE_GITLEAKS: false
63+
# VALIDATE_JSCPD: false
64+
# VALIDATE_SHELL_SHFMT: false

.github/workflows/test-build.yml

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -12,63 +12,63 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
jobs:
15-
test:
16-
if: github.event.pull_request.head.repo.fork == false
17-
name: Test sample app
18-
runs-on: ubuntu-latest-8-cores
19-
20-
steps:
21-
- uses: actions/checkout@v3
22-
with:
23-
lfs: true
24-
- run: git lfs pull
25-
26-
- uses: game-ci/unity-test-runner@v4
27-
id: passportTest
28-
env:
29-
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
30-
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
31-
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
32-
with:
33-
unityVersion: 2021.3.26f1
34-
projectPath: './sample'
35-
githubToken: ${{ secrets.GITHUB_TOKEN }}
36-
testMode: 'EditMode'
37-
- uses: actions/upload-artifact@v4
38-
if: always()
39-
with:
40-
name: Test results
41-
path: ${{ steps.passportTest.outputs.artifactsPath }}
42-
43-
- uses: actions/upload-artifact@v4
44-
if: always()
45-
with:
46-
name: Coverage results
47-
path: ${{ steps.passportTest.outputs.coveragePath }}
15+
# test:
16+
# if: github.event.pull_request.head.repo.fork == false
17+
# name: Test sample app
18+
# runs-on: ubuntu-latest-8-cores
19+
#
20+
# steps:
21+
# - uses: actions/checkout@v3
22+
# with:
23+
# lfs: true
24+
# - run: git lfs pull
25+
#
26+
# - uses: game-ci/unity-test-runner@v4
27+
# id: passportTest
28+
# env:
29+
# UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
30+
# UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
31+
# UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
32+
# with:
33+
# unityVersion: 2021.3.26f1
34+
# projectPath: './sample'
35+
# githubToken: ${{ secrets.GITHUB_TOKEN }}
36+
# testMode: 'EditMode'
37+
# - uses: actions/upload-artifact@v4
38+
# if: always()
39+
# with:
40+
# name: Test results
41+
# path: ${{ steps.passportTest.outputs.artifactsPath }}
42+
#
43+
# - uses: actions/upload-artifact@v4
44+
# if: always()
45+
# with:
46+
# name: Coverage results
47+
# path: ${{ steps.passportTest.outputs.coveragePath }}
4848
build:
49-
needs: test
50-
name: Build for ${{ matrix.targetPlatform }}
49+
# needs: test
50+
name: Build for ${{ matrix.targetPlatform }} on ${{ matrix.os }}
5151
runs-on: ${{ matrix.os }}
5252
strategy:
5353
fail-fast: false
5454
matrix:
5555
include:
56-
- targetPlatform: iOS
57-
os: macos-latest
58-
- targetPlatform: Android
59-
os: macos-latest
60-
- targetPlatform: WebGL
61-
os: macos-latest
56+
# - targetPlatform: iOS
57+
# os: macos-latest
58+
# - targetPlatform: Android
59+
# os: macos-latest
60+
# - targetPlatform: WebGL
61+
# os: macos-latest
6262
- targetPlatform: StandaloneOSX
6363
os: macos-latest
64-
- targetPlatform: iOS
65-
os: windows-latest
66-
- targetPlatform: Android
67-
os: windows-latest
68-
- targetPlatform: WebGL
69-
os: windows-latest
70-
- targetPlatform: StandaloneWindows64
71-
os: windows-latest
64+
# - targetPlatform: iOS
65+
# os: windows-latest
66+
# - targetPlatform: Android
67+
# os: windows-latest
68+
# - targetPlatform: WebGL
69+
# os: windows-latest
70+
# - targetPlatform: StandaloneWindows64
71+
# os: windows-latest
7272

7373
steps:
7474
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)