hexsha
stringlengths
40
40
size
int64
2
1.04M
ext
stringclasses
6 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
5
244
max_stars_repo_name
stringlengths
5
96
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
sequence
max_stars_count
int64
1
84.9k
βŒ€
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
βŒ€
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
βŒ€
max_issues_repo_path
stringlengths
5
244
max_issues_repo_name
stringlengths
5
96
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
sequence
max_issues_count
int64
1
98.3k
βŒ€
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
βŒ€
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
βŒ€
max_forks_repo_path
stringlengths
5
244
max_forks_repo_name
stringlengths
5
96
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
sequence
max_forks_count
int64
1
36.6k
βŒ€
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
βŒ€
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
βŒ€
content
stringlengths
2
1.04M
avg_line_length
float64
1
11.9k
max_line_length
int64
1
548k
alphanum_fraction
float64
0
1
ccee7c4dc71320564f6cdf50e9aecc2cfb0835e0
656
yml
YAML
.github/workflows/release.yml
0-vortex/eclass-docker-fork
d5db5d36c85165053447074f36af01abe420e16b
[ "MIT" ]
1
2021-12-12T02:43:16.000Z
2021-12-12T02:43:16.000Z
.github/workflows/release.yml
0-vortex/eclass-docker-fork
d5db5d36c85165053447074f36af01abe420e16b
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/eclass-docker-fork
d5db5d36c85165053447074f36af01abe420e16b
[ "MIT" ]
null
null
null
name: "Release" on: push: branches: - main - alpha - beta jobs: release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ env.RELEASE_TAG }} name: Semantic release runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸš€ release" id: semantic-release uses: docker://ghcr.io/0-vortex/open-sauced-semantic-config-test:3.20.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
22.62069
90
0.570122
8b3f2c15b4ee6b9b4e78959b2f4da2c179106e5b
5,040
yml
YAML
.github/workflows/release.yml
0-vortex/explore.opensauced.pizza
b836d6ff60eeab9df833a9775a64308545341e50
[ "MIT" ]
4
2021-07-25T00:15:29.000Z
2021-08-02T19:21:31.000Z
.github/workflows/release.yml
0-vortex/explore.opensauced.pizza
b836d6ff60eeab9df833a9775a64308545341e50
[ "MIT" ]
30
2021-07-23T03:32:04.000Z
2022-02-20T20:28:29.000Z
.github/workflows/release.yml
0-vortex/explore.opensauced.pizza
b836d6ff60eeab9df833a9775a64308545341e50
[ "MIT" ]
2
2021-07-23T01:37:49.000Z
2021-10-10T10:33:30.000Z
name: "Release" on: push: branches: - main jobs: docker: name: Build container runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup buildx" uses: docker/setup-buildx-action@v1 - name: "πŸ”§ cache docker layers" uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: "πŸ”§ docker meta" id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tags: latest - name: "πŸ“¦ docker build" uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} outputs: type=docker,dest=/tmp/docker.tar push: false cache-from: type=gha, scope=${{ github.workflow }} cache-to: type=gha, scope=${{ github.workflow }} - name: "πŸ“‚ docker artifacts" uses: actions/upload-artifact@v2 with: name: docker path: /tmp/docker.tar build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 14 - name: "πŸ”§ setup cache" uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/npm-shrinkwrap.json', '**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" run: npm ci - name: "πŸš€ static app" run: npm run build - name: "πŸ“‚ production artifacts" uses: actions/upload-artifact@v2 with: name: build path: build release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/v${{ steps.release.outputs.version }} name: Semantic release needs: - docker - build runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 14 - name: "πŸ”§ setup cache" uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/npm-shrinkwrap.json', '**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" run: npm ci - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸ“‚ download build artifacts" uses: actions/download-artifact@v2 with: name: build path: /tmp/build - name: "πŸš€ release" id: release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DOCKER_USERNAME: ${{ github.repository_owner }} DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }} GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.username }} GIT_AUTHOR_EMAIL: ${{ github.event.commits[0].author.email }} GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} run: | cp -R /tmp/build ./build npm run semantic-release echo "::set-output name=version::$(cat package.json | jq -r '.version')" deploy: name: Deploy to static needs: - build - release runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ“‚ download artifacts" uses: actions/download-artifact@v2 with: name: build path: /home/runner/build - name: "πŸ“‚ copy artifacts" run: cp -R /home/runner/build . - name: "πŸš€ deploy static" uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./build commit_message: ${{ github.event.head_commit.message }} enable_jekyll: false cname: explore.opensauced.pizza cleanup: name: Cleanup actions needs: - deploy runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | build docker
26.25
105
0.535317
73c111704fb43056f1150df6c774ae0c51eeef47
1,417
yml
YAML
.github/workflows/development.yml
0-vortex/explore.opensauced.pizza
b836d6ff60eeab9df833a9775a64308545341e50
[ "MIT" ]
4
2021-07-25T00:15:29.000Z
2021-08-02T19:21:31.000Z
.github/workflows/development.yml
0-vortex/explore.opensauced.pizza
b836d6ff60eeab9df833a9775a64308545341e50
[ "MIT" ]
30
2021-07-23T03:32:04.000Z
2022-02-20T20:28:29.000Z
.github/workflows/development.yml
0-vortex/explore.opensauced.pizza
b836d6ff60eeab9df833a9775a64308545341e50
[ "MIT" ]
2
2021-07-23T01:37:49.000Z
2021-10-10T10:33:30.000Z
name: "Development" on: pull_request: jobs: build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 14 - name: "πŸ”§ setup cache" uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/npm-shrinkwrap.json') }} restore-keys: | ${{ runner.os }}-node- - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" run: npm ci - name: "πŸš€ static app" run: npm run build lint: name: Code standards runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 14 - name: "πŸ”§ setup cache" uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/npm-shrinkwrap.json') }} restore-keys: | ${{ runner.os }}-node- - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" run: npm ci - name: "πŸ” lint code" run: npm run lint
22.140625
79
0.508821
ec1788231b2c84b22e4c505dfa24a71e876c1178
1,393
yml
YAML
.github/workflows/check-dist.yml
0-vortex/javascript-action-test
b7216f08e0637b01e4f56bd3dfea9c1a7c1f76fa
[ "MIT" ]
1
2022-01-26T08:55:49.000Z
2022-01-26T08:55:49.000Z
.github/workflows/check-dist.yml
0-vortex/javascript-action-test
b7216f08e0637b01e4f56bd3dfea9c1a7c1f76fa
[ "MIT" ]
3
2021-11-28T20:45:51.000Z
2022-02-14T11:34:20.000Z
.github/workflows/check-dist.yml
0-vortex/javascript-action-test
b7216f08e0637b01e4f56bd3dfea9c1a7c1f76fa
[ "MIT" ]
null
null
null
# `dist/index.js` is a special file in Actions. # When you reference an action with `uses:` in a workflow, # `index.js` is the code that will run. # For our project, we generate this file through a build process from other source files. # We need to make sure the checked-in `index.js` actually matches what we expect it to be. name: Check dist/ on: push: branches: - main paths-ignore: - '**.md' pull_request: paths-ignore: - '**.md' workflow_dispatch: jobs: check-dist: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set Node.js 12.x uses: actions/setup-node@v3 with: node-version: 12.x - name: Install dependencies run: npm ci - name: Rebuild the dist/ directory run: npm run prepare - name: Compare the expected and actual dist/ directories run: | if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then echo "Detected uncommitted changes after build. See status below:" git diff exit 1 fi id: diff # If index.js was different than expected, upload the expected version as an artifact - uses: actions/upload-artifact@v3 if: ${{ failure() && steps.diff.conclusion == 'failure' }} with: name: dist path: dist/
26.788462
91
0.595118
f0f12cc2480761d0b7eab2ff17a5bfac57f9a264
965
yml
YAML
.github/workflows/release.yml
0-vortex/octoherd-script-validate-contribution
ec77d94c28bbac8592fe7faa8f300e5269b64a7c
[ "MIT" ]
2
2021-06-17T11:56:44.000Z
2021-12-09T22:15:47.000Z
.github/workflows/release.yml
0-vortex/octoherd-script-validate-contribution
ec77d94c28bbac8592fe7faa8f300e5269b64a7c
[ "MIT" ]
9
2021-05-07T15:56:19.000Z
2021-06-10T03:26:38.000Z
.github/workflows/release.yml
0-vortex/octoherd-script-validate-contribution
ec77d94c28bbac8592fe7faa8f300e5269b64a7c
[ "MIT" ]
1
2021-06-04T21:54:51.000Z
2021-06-04T21:54:51.000Z
name: Release on: push: branches: - main jobs: test: name: "Test matrix" uses: bdougie/octoherd-script-validate-contribution/.github/workflows/test.yml@main release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release runs-on: ubuntu-latest needs: - test steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸš€ release" id: semantic-release uses: open-sauced/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: "♻️ cleanup" run: | echo ${{ steps.semantic-release.outputs.release-tag }} echo ${{ steps.semantic-release.outputs.release-version }}
26.081081
117
0.603109
c2deeb1d2379717e944621fe70ce51d817ea7d42
759
yml
YAML
.github/workflows/test.yml
0-vortex/octoherd-script-validate-contribution
ec77d94c28bbac8592fe7faa8f300e5269b64a7c
[ "MIT" ]
2
2021-06-17T11:56:44.000Z
2021-12-09T22:15:47.000Z
.github/workflows/test.yml
0-vortex/octoherd-script-validate-contribution
ec77d94c28bbac8592fe7faa8f300e5269b64a7c
[ "MIT" ]
9
2021-06-10T03:38:28.000Z
2021-12-10T21:34:57.000Z
.github/workflows/test.yml
0-vortex/octoherd-script-validate-contribution-test
cd84505503b98018f6b02e1c94c443598680b60c
[ "MIT" ]
1
2021-06-04T21:54:51.000Z
2021-06-04T21:54:51.000Z
name: Test on: pull_request: types: - opened - edited - synchronize - reopened workflow_call: jobs: test_matrix: runs-on: ubuntu-latest strategy: matrix: node_version: [12, 14, 16, 17] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node_version }} - uses: bahmutov/npm-install@v1 - run: npm test # the "test" step can NOT be required in branch protection if we # are running semantic-release however it can be reused with a # workflow_call. test: runs-on: ubuntu-latest needs: test_matrix steps: - run: | echo ok
19.461538
66
0.59025
87d211604284fab828b26bdb7b141a44274d451e
971
yml
YAML
.github/workflows/release.yml
0-vortex/octoherd-script-validate-contribution-test
cd84505503b98018f6b02e1c94c443598680b60c
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/octoherd-script-validate-contribution-test
cd84505503b98018f6b02e1c94c443598680b60c
[ "MIT" ]
2
2021-12-10T21:00:49.000Z
2021-12-10T21:00:52.000Z
.github/workflows/release.yml
0-vortex/octoherd-script-validate-contribution-test
cd84505503b98018f6b02e1c94c443598680b60c
[ "MIT" ]
null
null
null
name: Release on: push: branches: - main jobs: test: name: "Test matrix" uses: 0-vortex/octoherd-script-validate-contribution-test/.github/workflows/test.yml@main release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release runs-on: ubuntu-latest needs: - test steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸš€ release" id: semantic-release uses: open-sauced/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: "♻️ cleanup" run: | echo ${{ steps.semantic-release.outputs.release-tag }} echo ${{ steps.semantic-release.outputs.release-version }}
26.243243
117
0.603502
b5193536b318a78c3575adbf95cc00af7a066273
2,294
yml
YAML
.github/workflows/release.yml
0-vortex/open-sauced-catsup-app-test
ea6fed19f0199eb75252262c98a0fe55a539f4f4
[ "MIT" ]
2
2022-02-08T19:15:19.000Z
2022-02-15T00:08:05.000Z
.github/workflows/release.yml
0-vortex/open-sauced-catsup-app-test
ea6fed19f0199eb75252262c98a0fe55a539f4f4
[ "MIT" ]
1
2022-02-14T23:51:23.000Z
2022-02-14T23:55:14.000Z
.github/workflows/release.yml
0-vortex/open-sauced-catsup-app-test
ea6fed19f0199eb75252262c98a0fe55a539f4f4
[ "MIT" ]
null
null
null
name: Release on: push: branches: - main - alpha - beta concurrency: group: environment-${{ github.ref }} cancel-in-progress: true jobs: test: name: Test and lint uses: open-sauced/open-sauced/.github/workflows/development.yml@main build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“Š repository visualizer" id: diagram uses: githubocto/[email protected] with: excluded_paths: "node_modules,build,.storybook,.netlify,.github,npm-shrinkwrap.json" output_file: "public/diagram.svg" should_push: false root_path: "src/" - name: "πŸ“Š visualiser artifacts" uses: actions/upload-artifact@v2 with: name: diagram path: public/diagram.svg release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release needs: - test - build runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "♻️ clean up artifact paths" run: | rm -rf public/diagram.svg - name: "πŸ“‚ download diagram artifacts" uses: actions/download-artifact@v2 with: name: diagram path: public/ - name: "πŸš€ release" id: semantic-release uses: open-sauced/release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GIT_COMMITTER_NAME: 0-vortex GIT_COMMITTER_EMAIL: [email protected] cleanup: name: Cleanup actions needs: - release runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | diagram
23.895833
117
0.578901
c0e2c0d63b53338a656fed512292bdc1eabe6308
4,558
yml
YAML
.github/workflows/release.yml
0-vortex/open-sauced-hot-vite-ts-test
365b9d04c0ccc71373250cb8dd3cdaca14d264df
[ "MIT" ]
3
2022-02-27T16:09:17.000Z
2022-03-08T21:18:27.000Z
.github/workflows/release.yml
0-vortex/open-sauced-hot-vite-ts-test
365b9d04c0ccc71373250cb8dd3cdaca14d264df
[ "MIT" ]
13
2022-03-08T21:45:53.000Z
2022-03-18T19:48:24.000Z
.github/workflows/release.yml
0-vortex/open-sauced-hot-vite-ts-test
365b9d04c0ccc71373250cb8dd3cdaca14d264df
[ "MIT" ]
null
null
null
name: Release on: push: branches: - main - alpha - beta jobs: setup: name: Set environment variables runs-on: ubuntu-latest outputs: DEPLOY_ENVIRONMENT: ${{ steps.env.outputs.DEPLOY_ENVIRONMENT }} PRODUCTION: ${{ steps.env.outputs.PRODUCTION }} steps: - name: "☁️ compute environment variables" id: env run: | echo "::set-output name=DEPLOY_ENVIRONMENT::$([[ ${{ github.ref_name }} == 'main' ]] && echo 'production' || echo ${{ github.ref_name }})" echo "::set-output name=PRODUCTION::$( [[ ${{ github.ref_name }} == 'main' ]] && echo 'true' || echo 'false')" test: name: Test and lint uses: open-sauced/open-sauced/.github/workflows/development.yml@main docker: name: Build container runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup buildx" uses: docker/setup-buildx-action@v1 - name: "πŸ”§ cache docker layers" uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: "πŸ”§ docker meta" id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tags: latest - name: "πŸ“¦ docker build" uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} outputs: type=docker,dest=/tmp/docker.tar push: false cache-from: type=gha, scope=${{ github.workflow }} cache-to: type=gha, scope=${{ github.workflow }} - name: "πŸ“‚ docker artifacts" uses: actions/upload-artifact@v2 with: name: docker path: /tmp/docker.tar build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“Š repository visualizer" id: diagram uses: githubocto/[email protected] with: excluded_paths: "node_modules,build,.storybook,.netlify,.github,npm-shrinkwrap.json" output_file: "public/diagram.svg" should_push: false root_path: "src/" - name: "πŸ“Š visualiser artifacts" uses: actions/upload-artifact@v2 with: name: diagram path: public/diagram.svg - name: "πŸš€ static app" run: npm run build - name: "πŸ“‚ production artifacts" uses: actions/upload-artifact@v2 with: name: build path: build release: environment: name: ${{ needs.setup.outputs.DEPLOY_ENVIRONMENT }} url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release needs: - setup - test - docker - build runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "♻️ clean up artifact paths" run: | rm -rf public/diagram.svg - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸ“‚ download build artifacts" uses: actions/download-artifact@v2 with: name: build path: build - name: "πŸ“‚ download diagram artifacts" uses: actions/download-artifact@v2 with: name: diagram path: public/ - name: "πŸš€ release" id: semantic-release uses: open-sauced/release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} cleanup: name: Cleanup actions needs: - release runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | build docker diagram
26.045714
148
0.548925
796724c8f7cd85bb7330f7b975547c0546b5ae1e
2,577
yml
YAML
.github/workflows/release.yml
0-vortex/open-sauced-semantic-release-config
7c35176f8c84c89f888db8538d889bdb2b7a108f
[ "MIT" ]
1
2021-08-06T21:14:15.000Z
2021-08-06T21:14:15.000Z
.github/workflows/release.yml
0-vortex/open-sauced-semantic-release-config
7c35176f8c84c89f888db8538d889bdb2b7a108f
[ "MIT" ]
15
2021-10-25T00:16:24.000Z
2022-03-07T00:14:30.000Z
.github/workflows/release.yml
0-vortex/open-sauced-semantic-release-config
7c35176f8c84c89f888db8538d889bdb2b7a108f
[ "MIT" ]
null
null
null
name: "Semantic release" on: push: branches: - main - beta - alpha jobs: docker: name: Build container runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup buildx" uses: docker/setup-buildx-action@v1 - name: "πŸ”§ cache docker layers" uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: "πŸ”§ docker meta" id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tags: latest - name: "πŸ“¦ docker build" uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} outputs: type=docker,dest=/tmp/docker.tar push: false cache-from: type=gha, scope=${{ github.workflow }} cache-to: type=gha, scope=${{ github.workflow }} - name: "πŸ“‚ docker artifacts" uses: actions/upload-artifact@v2 with: name: docker path: /tmp/docker.tar release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ env.RELEASE_TAG }} name: Semantic release needs: - docker runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸš€ release" id: release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: npx semantic-release cleanup: name: Cleanup actions needs: - release runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | docker
24.084112
90
0.530462
7c5dbf5d3b6c0fbc11eb1d84046aba639f87287a
446
yml
YAML
action.yml
0-vortex/open-sauced-semantic-release-config
7c35176f8c84c89f888db8538d889bdb2b7a108f
[ "MIT" ]
1
2021-08-06T21:14:15.000Z
2021-08-06T21:14:15.000Z
action.yml
0-vortex/open-sauced-semantic-release-config
7c35176f8c84c89f888db8538d889bdb2b7a108f
[ "MIT" ]
15
2021-10-25T00:16:24.000Z
2022-03-07T00:14:30.000Z
action.yml
0-vortex/open-sauced-semantic-release-config
7c35176f8c84c89f888db8538d889bdb2b7a108f
[ "MIT" ]
null
null
null
name: 'open-sauced-semantic-config-test' author: '0-vortex' description: 'Run @open-sauced/semantic-release-conventional-config on a repo' outputs: release-tag: description: 'The tag that was released on success' release-version: description: 'The version that was released on success' branding: icon: 'package' color: 'yellow' runs: using: 'docker' image: 'docker://ghcr.io/0-vortex/open-sauced-semantic-config-test:3.30.1'
27.875
78
0.733184
8ca104941a6931d88220c54505a189df97fd395c
3,297
yml
YAML
.github/workflows/release.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
2
2022-01-26T08:55:39.000Z
2022-01-28T16:59:21.000Z
.github/workflows/release.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
1
2022-03-25T02:14:43.000Z
2022-03-25T02:14:43.000Z
.github/workflows/release.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
3
2022-03-16T18:49:34.000Z
2022-03-25T06:58:06.000Z
name: Release on: push: branches: - main - alpha - beta concurrency: group: supabase-${{ github.ref }} cancel-in-progress: true jobs: test: name: Test and lint uses: open-sauced/open-sauced/.github/workflows/development.yml@main database: name: Document database runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup go" uses: actions/setup-go@v2 with: go-version: 1.17 - name: "πŸ“Š install tbls" run: | curl -sL https://github.com/k1LoW/tbls/releases/download/v1.54.2/tbls_v1.54.2_linux_amd64.tar.gz > tbls.tar.gz file tbls.tar.gz tar -xf tbls.tar.gz sudo mv tbls /usr/local/bin/ rm tbls.tar.gz - name: "πŸ“Š database visualizer" run: tbls doc --rm-dist env: TBLS_DSN: ${{ secrets.SUPABASE_DB_URL }} TBLS_DOC_PATH: ./supabase/diagrams - name: "πŸ“Š visualiser artifacts" uses: actions/upload-artifact@v2 with: name: database path: supabase/diagrams/ build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“Š repository visualizer" id: diagram uses: githubocto/[email protected] with: excluded_paths: "node_modules,build,.storybook,.netlify,.github,npm-shrinkwrap.json" output_file: "public/diagram.svg" should_push: false root_path: "src/" - name: "πŸ“Š visualiser artifacts" uses: actions/upload-artifact@v2 with: name: diagram path: public/diagram.svg release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release needs: - test - build - database runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "♻️ clean up artifact paths" run: | rm -rf public/diagram.svg rm -rf supabase/diagrams/ - name: "πŸ“‚ download diagram artifacts" uses: actions/download-artifact@v2 with: name: diagram path: public/ - name: "πŸ“‚ download database artifacts" uses: actions/download-artifact@v2 with: name: database path: supabase/diagrams/ - name: "πŸš€ release" id: semantic-release uses: open-sauced/release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} cleanup: name: Cleanup actions needs: - release runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | diagram database
24.422222
120
0.566272
8104efd10e7c100e6ade23982edd899047ce7bde
1,097
yml
YAML
.github/workflows/seed-the-supabase.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
2
2022-01-26T08:55:39.000Z
2022-01-28T16:59:21.000Z
.github/workflows/seed-the-supabase.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
1
2022-03-25T02:14:43.000Z
2022-03-25T02:14:43.000Z
.github/workflows/seed-the-supabase.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
3
2022-03-16T18:49:34.000Z
2022-03-25T06:58:06.000Z
name: Seed the Supabase on: schedule: - cron: '42 */2 * * *' workflow_dispatch: concurrency: group: supabase-${{ github.ref }} cancel-in-progress: false jobs: seed-the-supabase: name: run dump runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ” seed supabase" run: npm run seed env: SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }} SUPABASE_URL: ${{ secrets.SUPABASE_URL }} - name: "πŸš€ Commit changes" uses: stefanzweifel/git-auto-commit-action@v4 with: file_pattern: ./src/seed/ supabase/seed.sql commit_message: "chore: seed supabase data [skip ci]" commit_user_name: 0-vortex commit_user_email: [email protected]
25.511628
69
0.59526
42d591cd7280dc6a96ec042def30ba7bcd2aa58f
1,283
yml
YAML
.github/workflows/populate-the-supabase.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
2
2022-01-26T08:55:39.000Z
2022-01-28T16:59:21.000Z
.github/workflows/populate-the-supabase.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
1
2022-03-25T02:14:43.000Z
2022-03-25T02:14:43.000Z
.github/workflows/populate-the-supabase.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
3
2022-03-16T18:49:34.000Z
2022-03-25T06:58:06.000Z
name: Populate the Supabase on: schedule: - cron: '*/5 * * * *' workflow_dispatch: concurrency: group: supabase-${{ github.ref }} cancel-in-progress: false jobs: populate-the-supabase: name: run update runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ” populate supabase" run: npm run start env: OPEN_SAUCED_APP_ID: ${{ secrets.OPEN_SAUCED_APP_ID }} OPEN_SAUCED_PRIVATE_KEY: ${{ secrets.OPEN_SAUCED_PRIVATE_KEY }} SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }} SUPABASE_URL: ${{ secrets.SUPABASE_URL }} LIMIT_DAYS: 1 LIMIT_USERS: 3 - name: "πŸš€ Commit changes" uses: stefanzweifel/git-auto-commit-action@v4 with: file_pattern: ./src/*.json commit_message: "chore: update supabase data [skip ci]" commit_user_name: 0-vortex commit_user_email: [email protected]
27.297872
73
0.601715
ce7db6db3723200eba2c2b79319b8d6cd82e97c9
362
yml
YAML
.tbls.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
2
2022-01-26T08:55:39.000Z
2022-01-28T16:59:21.000Z
.tbls.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
1
2022-03-25T02:14:43.000Z
2022-03-25T02:14:43.000Z
.tbls.yml
0-vortex/open-sauced-supabase-cron-test
6311aca53caa9049c595d5bd4cab678eeab1f3e0
[ "MIT" ]
3
2022-03-16T18:49:34.000Z
2022-03-25T06:58:06.000Z
name: hot.opensauced.pizza supabase desc: πŸ• The backend for the site that recommends the hottest projects on GitHub. include: - public.* detectVirtualRelations: enabled: true strategy: default format: adjust: true sort: false number: false showOnlyFirstParagraph: true er: skip: false format: svg comment: false distance: 2 font: ""
15.083333
80
0.723757
e40d47679b04de32f9814829ff797849c1b91338
3,938
yml
YAML
.github/workflows/release.yml
0-vortex/open-sauced-vite-ts-template-test
872eae35a32db17374a19c28e37332b3ce60b685
[ "MIT" ]
3
2022-02-27T16:05:33.000Z
2022-02-28T15:33:03.000Z
.github/workflows/release.yml
0-vortex/open-sauced-vite-ts-template-test
872eae35a32db17374a19c28e37332b3ce60b685
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/open-sauced-vite-ts-template-test
872eae35a32db17374a19c28e37332b3ce60b685
[ "MIT" ]
null
null
null
name: Release on: push: branches: - main - alpha - beta jobs: test: name: Test and lint uses: open-sauced/open-sauced/.github/workflows/development.yml@main docker: name: Build container runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup buildx" uses: docker/setup-buildx-action@v1 - name: "πŸ”§ cache docker layers" uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: "πŸ”§ docker meta" id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tags: latest - name: "πŸ“¦ docker build" uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} outputs: type=docker,dest=/tmp/docker.tar push: false cache-from: type=gha, scope=${{ github.workflow }} cache-to: type=gha, scope=${{ github.workflow }} - name: "πŸ“‚ docker artifacts" uses: actions/upload-artifact@v2 with: name: docker path: /tmp/docker.tar build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“Š repository visualizer" id: diagram uses: githubocto/[email protected] with: excluded_paths: "node_modules,build,.storybook,.netlify,.github,npm-shrinkwrap.json" output_file: "public/diagram.svg" should_push: false root_path: "src/" - name: "πŸ“Š visualiser artifacts" uses: actions/upload-artifact@v2 with: name: diagram path: public/diagram.svg - name: "πŸš€ static app" run: npm run build - name: "πŸ“‚ production artifacts" uses: actions/upload-artifact@v2 with: name: build path: build release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release needs: - test - docker - build runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "♻️ clean up artifact paths" run: | rm -rf public/diagram.svg - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸ“‚ download build artifacts" uses: actions/download-artifact@v2 with: name: build path: build - name: "πŸ“‚ download diagram artifacts" uses: actions/download-artifact@v2 with: name: diagram path: public/ - name: "πŸš€ release" id: semantic-release uses: open-sauced/release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} cleanup: name: Cleanup actions needs: - release runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | build docker diagram
24.459627
117
0.542915
d5a466ab3c655201499a8faa5c14430943ec6c42
4,519
yml
YAML
.github/workflows/release.yml
0-vortex/polywork-handbook
0bb8fad12fb1ce6fa505f2b482f6b95b430e94bf
[ "MIT" ]
1
2021-11-28T00:08:05.000Z
2021-11-28T00:08:05.000Z
.github/workflows/release.yml
0-vortex/polywork-handbook
0bb8fad12fb1ce6fa505f2b482f6b95b430e94bf
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/polywork-handbook
0bb8fad12fb1ce6fa505f2b482f6b95b430e94bf
[ "MIT" ]
null
null
null
name: "Release" on: push: branches: - main jobs: docker: name: Build container runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup buildx" uses: docker/setup-buildx-action@v1 - name: "πŸ”§ cache docker layers" uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: "πŸ”§ docker meta" id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tags: latest - name: "πŸ“¦ docker build" uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} outputs: type=docker,dest=/tmp/docker.tar push: false cache-from: type=gha, scope=${{ github.workflow }} cache-to: type=gha, scope=${{ github.workflow }} - name: "πŸ“‚ docker artifacts" uses: actions/upload-artifact@v2 with: name: docker path: /tmp/docker.tar build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸš€ static app" run: npm run build - name: "πŸ“‚ production artifacts" uses: actions/upload-artifact@v2 with: name: build path: build release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ env.RELEASE_TAG }} name: Semantic release needs: - docker - build runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸ“‚ download build artifacts" uses: actions/download-artifact@v2 with: name: build path: /tmp/build - name: "πŸš€ release" id: semantic-release uses: docker://ghcr.io/open-sauced/semantic-release-conventional-config:3.0.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} deploy: name: Deploy to static needs: - build - release runs-on: ubuntu-latest services: docs: image: ghcr.io/${{ github.repository }}:latest ports: - 8080:80 steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ“‚ download artifacts" uses: actions/download-artifact@v2 with: name: build path: /home/runner/build - name: Install Prince run: | curl https://www.princexml.com/download/prince-14.2-linux-generic-x86_64.tar.gz -O tar zxf prince-14.2-linux-generic-x86_64.tar.gz cd prince-14.2-linux-generic-x86_64 yes "" | sudo ./install.sh - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“‚ copy artifacts" run: cp -R /home/runner/build . - name: "πŸš€ generate pdf" run: npm run pdf - name: "πŸš€ deploy static" uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./build commit_message: ${{ github.event.head_commit.message }} enable_jekyll: false cname: polywork.vortex.name cleanup: name: Cleanup actions needs: - deploy runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | build docker
24.82967
92
0.541934
64b7f81e2c0725f854f41c98c9847f7c86f7d590
1,183
yml
YAML
.github/workflows/parse-the-feed.yml
0-vortex/rss-feed-parser
28cbb25937bb592de37b05c3043c13b00c4fdb55
[ "MIT" ]
3
2022-01-25T17:10:12.000Z
2022-01-26T08:55:41.000Z
.github/workflows/parse-the-feed.yml
0-vortex/rss-feed-parser
28cbb25937bb592de37b05c3043c13b00c4fdb55
[ "MIT" ]
null
null
null
.github/workflows/parse-the-feed.yml
0-vortex/rss-feed-parser
28cbb25937bb592de37b05c3043c13b00c4fdb55
[ "MIT" ]
null
null
null
name: Parse the RSS Feed on: schedule: - cron: '*/5 * * * *' workflow_dispatch: concurrency: group: environment-${{ github.ref }} cancel-in-progress: false jobs: parse-the-feed: name: run update runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ” parse rss feed" run: npm run start env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }} SUPABASE_URL: ${{ secrets.SUPABASE_URL }} OFFSET_HOURS: 4 OFFSET_USERS: 50 - name: "πŸš€ Commit changes" uses: stefanzweifel/git-auto-commit-action@v4 with: file_pattern: ./src/*.json commit_message: "chore: update feed data [skip ci]" commit_user_name: 0-vortex commit_user_email: [email protected]
25.717391
69
0.584108
300a65c3429473b9f8e12fc0b1a02bbfd8353d72
2,121
yml
YAML
.github/workflows/release.yml
0-vortex/rss-feed-parser
28cbb25937bb592de37b05c3043c13b00c4fdb55
[ "MIT" ]
3
2022-01-25T17:10:12.000Z
2022-01-26T08:55:41.000Z
.github/workflows/release.yml
0-vortex/rss-feed-parser
28cbb25937bb592de37b05c3043c13b00c4fdb55
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/rss-feed-parser
28cbb25937bb592de37b05c3043c13b00c4fdb55
[ "MIT" ]
null
null
null
name: Release on: push: branches: - main - alpha - beta concurrency: group: environment-${{ github.ref }} cancel-in-progress: true jobs: test: name: Test and lint uses: open-sauced/open-sauced/.github/workflows/development.yml@main build: name: Build application runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“Š repository visualizer" id: diagram uses: githubocto/[email protected] with: excluded_paths: "node_modules,build,.storybook,.netlify,.github,npm-shrinkwrap.json" output_file: "public/diagram.svg" should_push: false root_path: "src/" artifact_name: "diagram" release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release needs: - test - build runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ“‚ download diagram artifacts" if: needs.build.outputs.build-artifact uses: actions/download-artifact@v2 with: name: diagram path: . - name: "πŸš€ release" id: semantic-release uses: open-sauced/release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GIT_COMMITTER_NAME: 0-vortex GIT_COMMITTER_EMAIL: [email protected] cleanup: name: Cleanup actions needs: - release runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | diagram
24.102273
117
0.585573
1c873ffe799d6fc6108a5a7d844f5022e4ec9ba2
469
yml
YAML
action.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
4
2021-08-01T01:32:15.000Z
2021-08-24T11:20:23.000Z
action.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
29
2021-08-04T21:57:41.000Z
2022-03-05T13:53:06.000Z
action.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
2
2021-11-01T17:12:50.000Z
2021-11-10T20:16:33.000Z
name: '@open-sauced/semantic-release-conventional-config' author: '0-vortex' description: 'Run @open-sauced/semantic-release-conventional-config on a repo' outputs: release-tag: description: 'The tag that was released on success' release-version: description: 'The version that was released on success' branding: icon: 'package' color: 'yellow' runs: using: 'docker' image: 'docker://ghcr.io/open-sauced/semantic-release-conventional-config:3.1.0'
29.3125
82
0.744136
8a9f57d898573dc7caeebed81d57bf68acf75f30
2,589
yml
YAML
.github/workflows/release.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
4
2021-08-01T01:32:15.000Z
2021-08-24T11:20:23.000Z
.github/workflows/release.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
29
2021-08-04T21:57:41.000Z
2022-03-05T13:53:06.000Z
.github/workflows/release.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
2
2021-11-01T17:12:50.000Z
2021-11-10T20:16:33.000Z
name: "Semantic release" on: push: branches: - main - alpha - beta jobs: docker: name: Build container runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup buildx" uses: docker/setup-buildx-action@v1 - name: "πŸ”§ cache docker layers" uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: "πŸ”§ docker meta" id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tags: latest - name: "πŸ“¦ docker build" uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} outputs: type=docker,dest=/tmp/docker.tar push: false cache-from: type=gha, scope=${{ github.workflow }} cache-to: type=gha, scope=${{ github.workflow }} - name: "πŸ“‚ docker artifacts" uses: actions/upload-artifact@v2 with: name: docker path: /tmp/docker.tar release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ env.RELEASE_TAG }} name: Semantic release needs: - docker runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸš€ release" id: release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: | npx semantic-release cleanup: name: Cleanup actions needs: - release runs-on: ubuntu-latest steps: - name: "♻️ remove build artifacts" uses: geekyeggo/delete-artifact@v1 with: name: | docker
23.972222
90
0.528003
81002bfac2bb9349bb1c48b602b548921e286060
427
yml
YAML
.github/workflows/marketplace.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
4
2021-08-01T01:32:15.000Z
2021-08-24T11:20:23.000Z
.github/workflows/marketplace.yml
0-vortex/semantic-release-conventional-config
0bb17039020b42d3e7d73dbfcf14a47cb1ad888a
[ "MIT" ]
29
2021-08-04T21:57:41.000Z
2022-03-05T13:53:06.000Z
.github/workflows/marketplace.yml
0-vortex/open-sauced-semantic-release-config
7c35176f8c84c89f888db8538d889bdb2b7a108f
[ "MIT" ]
2
2021-11-01T17:12:50.000Z
2021-11-10T20:16:33.000Z
name: "Action major version tag" on: release: types: - published - edited jobs: latest: name: Update action tags runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: ref: ${{ github.ref }} - name: "πŸš€ publish action" uses: Actions-R-Us/actions-tagger@v2 with: publish_latest_tag: false prefer_branch_releases: false
18.565217
44
0.571429
aaa9b5a152b002944ad29f84698c7572356cb22c
2,336
yml
YAML
.github/workflows/nodejs.yml
0-vortex/semantic-release-docker
b781675113c228af5b4e5f48a47725e725467430
[ "MIT" ]
null
null
null
.github/workflows/nodejs.yml
0-vortex/semantic-release-docker
b781675113c228af5b4e5f48a47725e725467430
[ "MIT" ]
null
null
null
.github/workflows/nodejs.yml
0-vortex/semantic-release-docker
b781675113c228af5b4e5f48a47725e725467430
[ "MIT" ]
null
null
null
name: Node.js CI on: [push] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14.17.0' - uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- ${{ runner.os }}- - run: npm ci - name: eslint run: npx eslint . - name: test run: npm test env: CI: true - uses: actions/upload-artifact@v2 with: name: coverage path: .nyc_output coverage: needs: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14.17.0' - uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- ${{ runner.os }}- - run: npm ci - uses: actions/download-artifact@v2 with: name: coverage path: .nyc_output - name: coverage run: | npm i -g coveralls npx nyc check-coverage --lines 85 --per-file npx nyc report > lcov.info coveralls < lcov.info env: CI: true COVERALLS_REPO_TOKEN: ${{ secrets. COVERALLS_REPO_TOKEN }} release: if: github.ref == 'refs/heads/master' needs: coverage runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14.17.0' - uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- ${{ runner.os }}- - run: npm ci - run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
27.809524
77
0.490582
bb2d956a6f750ccd7f22355869c32b54dda9015f
1,349
yml
YAML
.github/workflows/release.yml
0-vortex/semantic-release-docker-mini
c4cc64646768043770e8907416535c557d8c00fa
[ "MIT" ]
1
2021-11-28T00:07:23.000Z
2021-11-28T00:07:23.000Z
.github/workflows/release.yml
0-vortex/semantic-release-docker-mini
c4cc64646768043770e8907416535c557d8c00fa
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/semantic-release-docker-mini
c4cc64646768043770e8907416535c557d8c00fa
[ "MIT" ]
null
null
null
name: "Release" on: push: branches: - main - alpha - beta jobs: release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/v${{ steps.release.outputs.version }} name: Semantic release runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" uses: bahmutov/npm-install@v1 - name: "πŸ“¦ install dependencies" run: npm run build - name: "πŸš€ release" id: release env: DISABLE_DOCKER: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.username }} GIT_AUTHOR_EMAIL: ${{ github.event.commits[0].author.email }} GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} run: | npm run semantic-release echo "::set-output name=version::$(cat package.json | jq -r '.version')"
26.98
105
0.571534
59776312cf57ee52edc7a5298897cdad9489f92f
3,271
yml
YAML
.github/workflows/release.yml
0-vortex/semantic-release-docker-test
7b50c6f1ffae6ad78f8d922422cb5d5e9ca6460f
[ "MIT" ]
1
2021-11-27T18:51:53.000Z
2021-11-27T18:51:53.000Z
.github/workflows/release.yml
0-vortex/semantic-release-docker-test
7b50c6f1ffae6ad78f8d922422cb5d5e9ca6460f
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/semantic-release-docker-test
7b50c6f1ffae6ad78f8d922422cb5d5e9ca6460f
[ "MIT" ]
null
null
null
name: "Release" on: push: branches: - main - alpha - beta - next - next-major jobs: docker: name: Build container runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup buildx" uses: docker/setup-buildx-action@v1 - name: "πŸ”§ cache docker layers" uses: actions/cache@v2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} restore-keys: | ${{ runner.os }}-buildx- - name: "πŸ”§ docker meta" id: meta uses: docker/metadata-action@v3 with: images: ${{ github.repository }} tags: latest - name: "πŸ“¦ docker build" uses: docker/build-push-action@v2 with: context: . tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} outputs: type=docker,dest=/tmp/docker.tar push: false cache-from: type=gha, scope=${{ github.workflow }} cache-to: type=gha, scope=${{ github.workflow }} - name: "πŸ“‚ docker artifacts" uses: actions/upload-artifact@v2 with: name: docker path: /tmp/docker.tar release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: Semantic release needs: - docker runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸš€ release" id: semantic-release uses: open-sauced/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: "♻️ cleanup" run: | echo ${{ steps.semantic-release.outputs.release-tag }} echo ${{ steps.semantic-release.outputs.release-version }} release-ghcr: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ env.RELEASE_TAG }} name: Semantic release needs: - docker runs-on: ubuntu-latest if: false == true steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ“‚ download docker artifacts" uses: actions/download-artifact@v2 with: name: docker path: /tmp - name: "πŸ“¦ load tag" run: | docker load --input /tmp/docker.tar docker image ls -a - name: "πŸš€ release" id: semantic-release uses: docker://ghcr.io/open-sauced/semantic-release-conventional-config:3.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: "♻️ cleanup" run: | echo ${{ env.RELEASE_TAG }} echo ${{ env.RELEASE_VERSION }}
25.755906
117
0.540813
40fd0fac8c04ec3bb9dec214903a6f5aa6b09bc3
649
yml
YAML
.github/workflows/main.yml
0-vortex/semantic-release-license
7b96122d5ce48ac97df47a8f8a0c35d474b716da
[ "MIT" ]
3
2021-05-09T15:54:24.000Z
2021-09-24T08:22:34.000Z
.github/workflows/main.yml
0-vortex/semantic-release-license
7b96122d5ce48ac97df47a8f8a0c35d474b716da
[ "MIT" ]
2
2021-03-11T05:11:47.000Z
2021-12-13T19:09:25.000Z
.github/workflows/main.yml
0-vortex/semantic-release-license
7b96122d5ce48ac97df47a8f8a0c35d474b716da
[ "MIT" ]
1
2021-12-11T23:46:38.000Z
2021-12-11T23:46:38.000Z
name: main on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: '12' - run: npm ci - run: npm run build - run: npm test - run: npm run lint - run: | source ./ci/setup-git.sh "$RELEASE_DEPLOY_KEY" npx semantic-release -r "[email protected]:$GITHUB_REPOSITORY.git" if: ${{ github.ref == 'refs/heads/latest' }} env: RELEASE_DEPLOY_KEY: ${{ secrets.RELEASE_DEPLOY_KEY }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GH_TOKEN: ${{ secrets.GH_TOKEN }}
28.217391
73
0.55624
fbc300ae6bd0aa0c088a2a7dafeb61a2f75a8780
177
yml
YAML
.github/workflows/triage.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
.github/workflows/triage.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
3
2021-12-12T04:24:56.000Z
2022-01-30T13:16:17.000Z
.github/workflows/triage.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
name: "Triage" on: issue_comment: types: - created - edited jobs: take-issue: uses: 0-vortex/create-react-app-5-test/.github/workflows/triage.yml@main
14.75
76
0.644068
e0fef29de39babb26869165228b3a1dab2341c96
711
yml
YAML
.github/workflows/test.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
.github/workflows/test.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
3
2021-12-12T04:24:56.000Z
2022-01-30T13:16:17.000Z
.github/workflows/test.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
name: "Test" on: pull_request: types: - opened - edited - synchronize - reopened workflow_call: jobs: test: runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" # uses: bahmutov/npm-install@v1 run: npm ci - name: "πŸ”§ lint code" run: npm run lint --if-present - name: "πŸ”§ run tests" run: npm run test --if-present
18.710526
39
0.52602
d3c249c435756bc7bbfee339aff14f43354f4e36
212
yml
YAML
.github/workflows/codeql-analysis.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
.github/workflows/codeql-analysis.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
3
2021-12-12T04:24:56.000Z
2022-01-30T13:16:17.000Z
.github/workflows/codeql-analysis.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
name: "CodeQL" on: push: branches: - main pull_request: schedule: - cron: '56 5 * * 1' jobs: analyze: uses: 0-vortex/create-react-app-5-test/.github/workflows/codeql-analysis.yml@main
15.142857
85
0.627358
841e34c6a256cef14c4783fc959bd7fc6536634d
247
yml
YAML
.github/workflows/compliance.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
.github/workflows/compliance.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
3
2021-12-12T04:24:56.000Z
2022-01-30T13:16:17.000Z
.github/workflows/compliance.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
name: "Compliance" on: pull_request_target: types: - opened - edited - synchronize permissions: pull-requests: write jobs: compliance: uses: 0-vortex/create-react-app-5-test/.github/workflows/compliance.yml@main
15.4375
80
0.676113
576174ca9203158003a2e8a301acde7f8dced30b
1,589
yml
YAML
.github/workflows/release.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
.github/workflows/release.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
3
2021-12-12T04:24:56.000Z
2022-01-30T13:16:17.000Z
.github/workflows/release.yml
0-vortex/semantic-release-license-fork
b7d4b60b9a6803716f3dc439fc8afe55085e42d7
[ "MIT" ]
null
null
null
name: "Release" on: push: branches: - main - alpha - beta jobs: test: name: "Test code" uses: 0-vortex/semantic-release-license-fork/.github/workflows/test.yml@main build: name: "Build code" runs-on: ubuntu-latest steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 - name: "πŸ”§ setup node" uses: actions/[email protected] with: node-version: 16 - name: "πŸ”§ install npm@latest" run: npm i -g npm@latest - name: "πŸ“¦ install dependencies" # uses: bahmutov/npm-install@v1 run: npm ci - name: "πŸš€ static app" run: npm run build - name: "πŸ“‚ production artifacts" uses: actions/upload-artifact@v2 with: name: build path: build release: environment: name: production url: https://github.com/${{ github.repository }}/releases/tag/${{ steps.semantic-release.outputs.release-tag }} name: "Semantic release" runs-on: ubuntu-latest needs: - test - build steps: - name: "☁️ checkout repository" uses: actions/checkout@v2 with: fetch-depth: 0 - name: "πŸ“‚ download build artifacts" uses: actions/download-artifact@v2 with: name: build path: ./build - name: "πŸš€ release" id: semantic-release uses: open-sauced/semantic-release-conventional-config@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
22.7
117
0.560101
1dffbab08a998170e1badf285e9a304f4213b7c8
889
yml
YAML
.github/workflows/gh-pages.yml
0-vortex/traduceri.online
7778dc18f478446a859876f7685b6326b6a7266e
[ "MIT" ]
1
2021-08-06T21:13:52.000Z
2021-08-06T21:13:52.000Z
.github/workflows/gh-pages.yml
0-vortex/traduceri.online
7778dc18f478446a859876f7685b6326b6a7266e
[ "MIT" ]
null
null
null
.github/workflows/gh-pages.yml
0-vortex/traduceri.online
7778dc18f478446a859876f7685b6326b6a7266e
[ "MIT" ]
null
null
null
# Runs build and publish name: CI on: push: branches: - main jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Use Node uses: actions/[email protected] - name: Cache dependencies uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/npm-shrinkwrap.json') }} restore-keys: | ${{ runner.os }}-node- - run: npm ci - run: npm run build - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./_site user_name: 'github-actions[bot]' user_email: 'github-actions[bot]@users.noreply.github.com' commit_message: ${{ github.event.head_commit.message }} cname: traduceri.online
25.4
79
0.553431
f58013c4b5de3d56cc5a27b84d3ff71c7fc18cdb
732
yml
YAML
admin/config.yml
0-vortex/traduceri.online
7778dc18f478446a859876f7685b6326b6a7266e
[ "MIT" ]
1
2021-08-06T21:13:52.000Z
2021-08-06T21:13:52.000Z
admin/config.yml
0-vortex/traduceri.online
7778dc18f478446a859876f7685b6326b6a7266e
[ "MIT" ]
null
null
null
admin/config.yml
0-vortex/traduceri.online
7778dc18f478446a859876f7685b6326b6a7266e
[ "MIT" ]
null
null
null
backend: name: github repo: 0-vortex/traduceri.online branch: main site_domain: vigilant-noether-3452aa.netlify.app media_folder: "img/remote" public_folder: "/img/remote" collections: - name: "blog" label: "Blog" folder: "posts" create: true slug: "{{year}}-{{month}}-{{day}}-{{slug}}" fields: - {label: "Layout", name: "layout", widget: "hidden", default: "layouts/post.njk"} - {label: "Title", name: "title", widget: "string"} - {label: "Description", name: "description", widget: "string"} - {label: "Publish Date", name: "date", widget: "datetime"} - {label: "Featured Image", name: "image", widget: "image"} - {label: "Body", name: "body", widget: "markdown"}
34.857143
88
0.612022
7df878f00ef3aea5fed3ee2cc701405c60675b05
794
yml
YAML
.gitpod.yml
0-vortex/vitejs-vite-vkzht6
3934e3256139eab0e3d541812fa8a6eb7085b9aa
[ "MIT" ]
null
null
null
.gitpod.yml
0-vortex/vitejs-vite-vkzht6
3934e3256139eab0e3d541812fa8a6eb7085b9aa
[ "MIT" ]
15
2022-01-27T14:21:18.000Z
2022-01-27T14:28:29.000Z
.gitpod.yml
0-vortex/vitejs-vite-vkzht6
3934e3256139eab0e3d541812fa8a6eb7085b9aa
[ "MIT" ]
null
null
null
image: file: .gitpod.Dockerfile tasks: - init: npm ci command: npm start ports: - port: 3000 onOpen: open-preview github: prebuilds: # enable for the default branch (defaults to true) main: true # enable for all branches in this repo (defaults to false) branches: true # enable for pull requests coming from this repo (defaults to true) pullRequests: true # enable for pull requests coming from forks (defaults to false) pullRequestsFromForks: true # add a check to pull requests (defaults to true) addCheck: true # add a "Review in Gitpod" button as a comment to pull requests (defaults to false) addComment: true # add a "Review in Gitpod" button to the pull request's description (defaults to false) addBadge: false
28.357143
91
0.697733
6128644d9117294de7a3b3fda17a29ed63935c75
693
yml
YAML
.travis.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
2
2018-11-26T18:58:46.000Z
2018-12-01T16:18:31.000Z
.travis.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
1
2018-12-19T13:46:46.000Z
2018-12-19T13:46:46.000Z
.travis.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
1
2018-12-19T13:44:33.000Z
2018-12-19T13:44:33.000Z
sudo: required dist: xenial branches: except: - /^(v\d+\.\d+\.\d+)|gh-pages$/ language: node_js node_js: - "11.3" cache: npm before_script: - "curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash" script: - fossa init - fossa analyze - npm run export after_success: - fossa test env: - NODE_ENV=production deploy: provider: pages skip-cleanup: true github-token: $GITHUB_TOKEN on: branch: master local-dir: out target-branch: gh-pages keep-history: true fqdn: vortex.name email: [email protected] name: Travis CI committer-from-gh: false allow-empty-commit: true verbose: true
19.25
120
0.691198
c07ea47b22b979ca3626584160e1e192bb4bbb06
188
yml
YAML
.fossa.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
2
2018-11-26T18:58:46.000Z
2018-12-01T16:18:31.000Z
.fossa.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
1
2018-12-19T13:46:46.000Z
2018-12-19T13:46:46.000Z
.fossa.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
1
2018-12-19T13:44:33.000Z
2018-12-19T13:44:33.000Z
version: 1 cli: server: https://app.fossa.io fetcher: custom project: [email protected]:0-vortex/vortex.name.git analyze: modules: - name: . type: npm target: . path: .
15.666667
50
0.632979
583f453f66babe253cd7d1f082660a11469353cf
589
yml
YAML
dependencies.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
2
2018-11-26T18:58:46.000Z
2018-12-01T16:18:31.000Z
dependencies.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
1
2018-12-19T13:46:46.000Z
2018-12-19T13:46:46.000Z
dependencies.yml
0-vortex/vortex.name
5d655d5ffaf1c9afb9ac47a6f59650d36067e13f
[ "BSD-3-Clause" ]
1
2018-12-19T13:44:33.000Z
2018-12-19T13:44:33.000Z
version: 2 dependencies: - type: js path: . settings: constraint_prefix: "^" node_env: production npmrc: | registry=https://skimdb.npmjs.com/registry isFromCI=true dist_tags: semantic-release: latest commit_message_prefix: "ci(Deps): " pullrequest_notes: This is an automated pull request updating npm dependencies. related_pr_behavior: close # github options github_labels: - dependencies github_assignees: - 0-vortex github_milestone: 3 github_base_branch: master
24.541667
85
0.63837
0dd356344a7b7ef507d5f25aaf8517fb6afdd3e7
1,546
yml
YAML
.github/workflows/build.yml
0-wiz-0/libzip
48695e84d566d87f36fb1328bb1880a4e9d8c1df
[ "BSD-3-Clause" ]
null
null
null
.github/workflows/build.yml
0-wiz-0/libzip
48695e84d566d87f36fb1328bb1880a4e9d8c1df
[ "BSD-3-Clause" ]
null
null
null
.github/workflows/build.yml
0-wiz-0/libzip
48695e84d566d87f36fb1328bb1880a4e9d8c1df
[ "BSD-3-Clause" ]
null
null
null
name: build on: [push] jobs: all: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] # os: [macos-latest, ubuntu-latest] steps: - name: checkout uses: actions/checkout@v2 - name: install dependencies (Linux) if: ${{ runner.os == 'Linux' }} run: | sudo apt-get install libzstd-dev - name: install dependencies (Windows) if: ${{ runner.os == 'Windows' }} uses: lukka/run-vcpkg@v7 id: runvcpkg with: vcpkgGitCommitId: 8bb3f9e4a08a5b71ee93a6f1bcdd7a258bb48392 vcpkgTriplet: x64-windows vcpkgArguments: zlib bzip2 liblzma zstd - name: prepare build directory run: | cmake -E make_directory ${{runner.workspace}}/build - name: configure (Unix) if: ${{ runner.os != 'Windows' }} working-directory: ${{runner.workspace}}/build run: | cmake ${{github.workspace}} - name: configure (Windows) if: ${{ runner.os == 'Windows' }} working-directory: ${{runner.workspace}}/build run: | cmake -DCMAKE_TOOLCHAIN_FILE=${{env.VCPKG_ROOT}}/scripts/buildsystems/vcpkg.cmake ${{github.workspace}} - name: build working-directory: ${{runner.workspace}}/build run: | cmake --build . --config Release - name: test working-directory: ${{runner.workspace}}/build run: | ctest -v -C Release
32.208333
113
0.569858
cc8a949ac5fe447239b3ac49a57754af342f66b4
1,421
yml
YAML
src/config.yml
00-00-00-11/Bulbbot
3b6df32b6102f553da1c55d66e65a36ebb76bd65
[ "MIT" ]
null
null
null
src/config.yml
00-00-00-11/Bulbbot
3b6df32b6102f553da1c55d66e65a36ebb76bd65
[ "MIT" ]
null
null
null
src/config.yml
00-00-00-11/Bulbbot
3b6df32b6102f553da1c55d66e65a36ebb76bd65
[ "MIT" ]
1
2021-10-08T19:59:38.000Z
2021-10-08T19:59:38.000Z
--- name: "Bulbbot" # project name developers: [ # developers id stored in array for devOnly commands "190160914765316096", # mrphilip "439396770695479297" # Kluk ] version: 1.0.0 # current version lib: Discord.JS # lib used for the bot # configs prefix: "!" # default prefix embedColor: "#7289DA" # default embed color # client client: tag: "Bulbbot#9083" # bot full tag id: "755149065137815623" # bot id game: "the light shine" # what the game activity should be type: "WATCHING" # COMPETING (5), WATCHING(3), LISTENING (2), STREAMING (1), PLAYING (0) status: "online" # online, idle, dnd, invisible fetchAllUsers: false # if the bot should fetch all the user on start disableMentions: "everyone" # disable certain mentions # server server: prometheusHost: "localhost" # host for prometheus prometheusPort: 7070 # port for prometheus # support supportInvite: "https://discord.gg/cacUmbQ" # support guild invite link # logs botDM: "761572579504160788" # channel id for bot dms invite: "771491209977528340" # channel id for bot invites error: "810530397804953611" # channel id for bot errors translation: "820689105854660699" # channel id for untranslated strings
39.472222
103
0.616467
790037052325ccd9986c3bf54077a2859940710b
353
yaml
YAML
locales/tr/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
1
2021-09-30T08:07:27.000Z
2021-09-30T08:07:27.000Z
locales/tr/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
locales/tr/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
ping_command: ":ping_pong: Pong! %{ping}ms" language_updated: Diliniz başarıyla güncellendi help_embed_title: Bir komut hakkında daha fazla bilgi içim `yardım <komut_adı>` komutunu kullanın help_permissions: Gerekli İzinler help_name: Komut Adı help_aliases: Alternatifler help_not_found: "`%{command}` adında bir komut bulunamadı" not_found: Bulunamadı
44.125
97
0.824363
baa0a6fe32f8f1cb05e10635f08dfc863dc9622e
352
yaml
YAML
locales/en/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
1
2021-09-30T08:07:27.000Z
2021-09-30T08:07:27.000Z
locales/en/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
locales/en/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
ping_command: ":ping_pong: Pong! %{ping}ms" language_updated: Your language has been successfully updated help_embed_title: For more information about a command, use `help <command_name>` command help_permissions: Required Permissions help_name: Name help_aliases: Aliases help_not_found: "Command with name `%{command}` not found" not_found: Not Found
44
89
0.8125
8bbb1d310fd7f3355594eea372532c2adeb65ec2
343
yaml
YAML
locales/es/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
1
2021-09-30T08:07:27.000Z
2021-09-30T08:07:27.000Z
locales/es/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
locales/es/commands.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
ping_command: ":ping_pong: Pong! %{ping}ms" language_updated: Su idioma fue actualizado con exito help_embed_title: Para mΓ‘s informaciΓ³n sobre un comando, utiliza `help <command_name>` help_permissions: Permisos requeridos help_name: Nombre help_aliases: Alias help_not_found: "El comando `%{command}` no existe" not_found: No se ha encontrado
42.875
86
0.80758
5ac2442ded53b740be446523eefe35c7ac9162d6
456
yaml
YAML
locales/es/errors.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
1
2021-09-30T08:07:27.000Z
2021-09-30T08:07:27.000Z
locales/es/errors.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
locales/es/errors.yaml
00-00-00-11/Farm
0530ce503e5207ad5a734b74fafe327e0751501c
[ "MIT" ]
null
null
null
command_owner_only: Este comando es sΓ³lo para el dueΓ±o. not_enough_permission: Necesitas el `%{permissions}` para usar este comando. command_guild_only: Este comando es sΓ³lo para servidores. specify_language: Especifique un idioma specify_valid_language: "Especifique un idioma vΓ‘lido. Lenguajes validos: `%{languages}`" command_disabled: Este comando estΓ‘ desactivado. wait_cooldown: Tienes que esperar %{cooldown} segundos para usar este comando de nuevo
65.142857
89
0.826754
0836e05fcaeb6c23c0e23aa4a7f01cfcb5a46208
612
yml
YAML
examples/autotiler/MnistGraph/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/MnistGraph/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/MnistGraph/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: mnist_graph boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.540541
28
0.392157
61433faa4ae3caff35f7dd56a37eb81851947a33
609
yml
YAML
examples/autotiler/MatMult/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/MatMult/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/MatMult/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: mat_mult boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.459459
28
0.389163
fbc48f483dc584f7ac547f8856bcd982647c8601
2,824
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/queue/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/queue/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/queue/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_queue platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: preempt_O0: name: preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O0" preempt_O1: name: preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O1" preempt_O2: name: preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O2" preempt_O3: name: preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O3" preempt_Os: name: preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-Os" no_preempt_O0: name: no_preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O0" no_preempt_O1: name: no_preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O1" no_preempt_O2: name: no_preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O2" no_preempt_O3: name: no_preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O3" no_preempt_Os: name: no_preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-Os"
21.723077
51
0.458569
fe7acc88f61df5e72dcd79b061947e84936f423d
339
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/eventgroup/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/eventgroup/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/eventgroup/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_eventgroup platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: ~
15.409091
32
0.460177
3a49dc9b7ab987587563ef2b3eeb7b820f5d0af6
612
yml
YAML
examples/nntool/visual_wake/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/nntool/visual_wake/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/nntool/visual_wake/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: visual_wake boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.540541
28
0.392157
f989a6cc2f1e0d951317aeae53c35c54a91984fe
611
yml
YAML
examples/nntool/mnist_lstm/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/nntool/mnist_lstm/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/nntool/mnist_lstm/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: mnist_lstm boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.513514
28
0.391162
48c052047ea5697125ea70bca0d38948359e9a57
334
yml
YAML
rtos/freeRTOS/demos/gwt/examples/periph/timer/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/periph/timer/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/periph/timer/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_periph_timer platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: ~
15.181818
27
0.452096
755382435ce8db21c7c2266194fd4a7a6174baf7
371
yml
YAML
libs/openmp/tests/barrier/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/barrier/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/barrier/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_barrier boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
14.84
26
0.436658
721e150e898bacdc0e5ed1090804515bcb9faa07
611
yml
YAML
examples/autotiler/MatrixAdd/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/MatrixAdd/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/MatrixAdd/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: matrix_add boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.513514
28
0.391162
9039c35aa6341d1df7edfe817da251b7c128b353
604
yml
YAML
examples/autotiler/Fir/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/Fir/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/Fir/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: fir boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.324324
28
0.384106
9c4f6267c62e2a5d1e0b5ccd2231deeee14571af
2,828
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/semaphore/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/semaphore/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/semaphore/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_semaphore platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: preempt_O0: name: preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O0" preempt_O1: name: preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O1" preempt_O2: name: preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O2" preempt_O3: name: preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O3" preempt_Os: name: preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-Os" no_preempt_O0: name: no_preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O0" no_preempt_O1: name: no_preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O1" no_preempt_O2: name: no_preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O2" no_preempt_O3: name: no_preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O3" no_preempt_Os: name: no_preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-Os"
21.753846
51
0.459335
e706821f3e8db5d2a4e48e36529926feef1d1aee
335
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/sw_irq/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/sw_irq/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/sw_irq/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_sw_irq platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: ~
15.227273
28
0.453731
0d206bacb275eaf87f6e3838afd0549d22939839
610
yml
YAML
examples/nntool/mnist_gru/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/nntool/mnist_gru/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/nntool/mnist_gru/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: mnist_gru boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.486486
28
0.390164
0d515ee9ae5a0c35653773dcf035d6ff9ae46979
370
yml
YAML
libs/openmp/tests/single/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/single/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/single/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_single boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
14.8
26
0.435135
7d8a3cf320fea2b830719f701060555b4384b315
2,824
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/tasks/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/tasks/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/tasks/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_tasks platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: preempt_O0: name: preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O0" preempt_O1: name: preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O1" preempt_O2: name: preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O2" preempt_O3: name: preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O3" preempt_Os: name: preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-Os" no_preempt_O0: name: no_preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O0" no_preempt_O1: name: no_preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O1" no_preempt_O2: name: no_preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O2" no_preempt_O3: name: no_preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O3" no_preempt_Os: name: no_preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-Os"
21.723077
51
0.458569
96289a886333eb1438fe59c88de93a784d2e8ec8
376
yml
YAML
libs/openmp/tests/for_variable/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/for_variable/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/for_variable/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_for_variable boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
15.04
26
0.444149
d1c4d0045c8d3f080304c233cad2cda4da293894
332
yml
YAML
rtos/freeRTOS/demos/gwt/examples/hello_world/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/hello_world/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/hello_world/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_helloworld platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: ~
15.090909
26
0.448795
f315bbeed8e2820a4e043efc6728501bcf279d4d
380
yml
YAML
libs/openmp/tests/critical_section/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/critical_section/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/critical_section/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_critical_section boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
15.2
29
0.45
f3cb85c6c1f9fbdec9e6121bba3e4d6aae2cdf46
615
yml
YAML
examples/autotiler/IntegralImage/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/IntegralImage/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/IntegralImage/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: integral_image boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.621622
28
0.395122
43414de0be4f8126b5cbf31c4f892a840916f87d
2,824
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/mutex/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/mutex/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/mutex/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_mutex platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: preempt_O0: name: preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O0" preempt_O1: name: preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O1" preempt_O2: name: preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O2" preempt_O3: name: preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O3" preempt_Os: name: preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-Os" no_preempt_O0: name: no_preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O0" no_preempt_O1: name: no_preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O1" no_preempt_O2: name: no_preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O2" no_preempt_O3: name: no_preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O3" no_preempt_Os: name: no_preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-Os"
21.723077
51
0.458569
f6dac29991ad4019d94c29a47137fdb90cd8848a
612
yml
YAML
examples/nntool/expressions/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/nntool/expressions/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/nntool/expressions/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: expressions boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.540541
28
0.392157
2c84d21ef55c86533d11419e48f8a66de5a33d7d
370
yml
YAML
libs/openmp/tests/atomic/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/atomic/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/atomic/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_atomic boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
14.8
26
0.435135
fa54f407bcaff0bcf7dd907476c090ea9873b484
374
yml
YAML
libs/openmp/tests/for_simple/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/for_simple/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/for_simple/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_for_simple boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
14.96
26
0.441176
c5a83c01ffbd6ac45897f0f72e8d1798c5c75388
605
yml
YAML
examples/autotiler/Mfcc/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/Mfcc/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/Mfcc/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: mfcc boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.351351
28
0.385124
0c0c4fd7fd3c834f500ed72f2e275d03f8f1bf42
374
yml
YAML
libs/openmp/tests/helloworld/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/helloworld/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/helloworld/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_helloworld boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
14.96
26
0.441176
49fecde61854d32c645acacd3fb200d63b69d4ea
612
yml
YAML
examples/autotiler/FFT2DModel/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/FFT2DModel/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/FFT2DModel/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: fft2d_model boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.540541
28
0.392157
053c90320a20ea3866ab5a87cb90f2a79ae9f412
373
yml
YAML
libs/openmp/tests/benchmark/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/benchmark/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
libs/openmp/tests/benchmark/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: openmp_benchmark boards: [] platforms: - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~
14.92
26
0.439678
8e8b3722c852d10d5d7c49c76ff40689b4e548fe
610
yml
YAML
examples/nntool/mnist_rnn/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/nntool/mnist_rnn/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/nntool/mnist_rnn/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: mnist_rnn boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.486486
28
0.390164
d001294d792470d7c2ef416ebcf91e7a1d910558
2,831
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/notification/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/notification/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/notification/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_notification platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: preempt_O0: name: preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O0" preempt_O1: name: preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O1" preempt_O2: name: preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O2" preempt_O3: name: preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-O3" preempt_Os: name: preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=true APP_CFLAGS=-Os" no_preempt_O0: name: no_preempt_O0 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O0" no_preempt_O1: name: no_preempt_O1 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O1" no_preempt_O2: name: no_preempt_O2 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O2" no_preempt_O3: name: no_preempt_O3 tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-O3" no_preempt_Os: name: no_preempt_Os tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: "NO_PREEMPTION=false APP_CFLAGS=-Os"
21.776923
51
0.459908
d047385083e6b77a3ca54b2bc5b7fb8d0261afcd
606
yml
YAML
examples/nntool/mnist/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/nntool/mnist/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/nntool/mnist/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: mnist boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.378378
28
0.386139
ad0d3f2d900bad04eeea14bc354d88ec0b2b521e
337
yml
YAML
rtos/freeRTOS/demos/gwt/examples/kernel/sw_timer/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/sw_timer/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
rtos/freeRTOS/demos/gwt/examples/kernel/sw_timer/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
null
null
null
name: freertos_kernel_sw_timer platforms: - gvsoc os: - freertos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - freertos chips: - gap8 - gap9 flags: ~
15.318182
30
0.456973
aaf9ae004b9740ec9def168667589acffe9156c2
608
yml
YAML
examples/autotiler/Cifar10/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/Cifar10/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/Cifar10/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: cifar10 boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.432432
28
0.388158
c865084ef038699eca9f13f6265525661e7f4b73
616
yml
YAML
examples/autotiler/BilinearResize/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
118
2018-05-22T08:45:59.000Z
2022-03-30T07:00:45.000Z
examples/autotiler/BilinearResize/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
213
2018-07-25T02:37:32.000Z
2022-03-30T18:04:01.000Z
examples/autotiler/BilinearResize/gaptest.yml
00-01/gap_sdk
25444d752b26ccf0b848301c381692d77172852c
[ "Apache-2.0" ]
76
2018-07-04T08:19:27.000Z
2022-03-24T09:58:05.000Z
name: bilinear_resize boards: [] platforms: - board - gvsoc os: - freertos - pulpos chips: - gap8 - gap9 variants: std: name: standard tags: - integration - release duration: standard os: - pulpos - freertos chips: - gap8 - gap9 flags: ~ # gap9: # name: standard # tags: # - integration # - release # os: # - pulpos # chips: # - gap9 # duration: standard # flags: ~
16.648649
28
0.396104
3c922a17c5b175db7f2f9388d54e8d39eb71a8b4
607
yml
YAML
_config.yml
00-2/github-pages-with-jekyll
576a535a258dc059df917ad46aa47ec981e013f1
[ "MIT" ]
null
null
null
_config.yml
00-2/github-pages-with-jekyll
576a535a258dc059df917ad46aa47ec981e013f1
[ "MIT" ]
5
2020-11-05T17:59:04.000Z
2020-11-05T18:22:35.000Z
_config.yml
00-2/github-pages-with-jekyll
576a535a258dc059df917ad46aa47ec981e013f1
[ "MIT" ]
null
null
null
author: 00-02 email: [email protected] description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. # social links twitter_username: your-twitter-handle # DO NOT include the @ character, or else the build will fail! github_username: your-github-handle # DO NOT include the @ character, or else the build will fail! show_excerpts: true # set to false to remove excerpts on the homepage theme: minima
43.357143
100
0.769357
2e74aeed6f7c8ed8c43599e6e99c2230fcde25bd
2,638
yml
YAML
_config.yml
00-BonnieB/boyanab.github.io
7a83e560ae4ebfa118e260c79e7df028f06d2cee
[ "MIT" ]
null
null
null
_config.yml
00-BonnieB/boyanab.github.io
7a83e560ae4ebfa118e260c79e7df028f06d2cee
[ "MIT" ]
null
null
null
_config.yml
00-BonnieB/boyanab.github.io
7a83e560ae4ebfa118e260c79e7df028f06d2cee
[ "MIT" ]
1
2018-07-16T10:01:53.000Z
2018-07-16T10:01:53.000Z
# # This file contains configuration flags to customize your site # # Name of your site (displayed in the header) name: Bonnie's Blog # Short bio or description (displayed in the header) description: Welcome to my corner of the internet. # URL of your avatar or profile pic (you could use your GitHub profile pic) avatar: https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAhvAAAAJGQ2ZjcwMTY1LTAxNmYtNGQzZC1iNDA3LTEzMTBmNDU1ZDAwYQ.jpg # # Flags below are optional # # Includes an icon in the footer for each username you enter footer-links: dribbble: email: facebook: flickr: github: instagram: linkedin: boyana-bonnie-buyuklieva-a75096108/ pinterest: rss: # just type anything here for a working RSS icon twitter: Bonnie_0000 stackoverflow: # your stackoverflow profile, e.g. "users/50476/bart-kiers" youtube: # channel/<your_long_string> or user/<user-name> googleplus: # anything in your profile username that comes after plus.google.com/ # Enter your Disqus shortname (not your username) to enable commenting on posts # You can find your shortname on the Settings page of your Disqus account disqus: bonnies-blog # Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking google_analytics: UA-100576038-1 # Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co) # Used for Sitemap.xml and your RSS feed url: # If you're hosting your site at a Project repository on GitHub pages # (http://yourusername.github.io/repository-name) # and NOT your User repository (http://yourusername.github.io) # then add in the baseurl here, like this: "/repository-name" baseurl: "" # # !! You don't need to change any of the configuration flags below !! # permalink: /:title/ # The release of Jekyll Now that you're using version: v1.2.0 # Jekyll 3 now only supports Kramdown for Markdown kramdown: # Use GitHub flavored markdown, including triple backtick fenced code blocks input: GFM # Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting syntax_highlighter: rouge syntax_highlighter_opts: # Use existing pygments syntax highlighting css css_class: 'highlight' # Set the Sass partials directory, as we're using @imports sass: style: :expanded # You might prefer to minify using :compressed # Use the following plug-ins gems: - jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem - jekyll-feed # Create an Atom feed using the official Jekyll feed gem # Exclude these files from your production _site exclude: - Gemfile - Gemfile.lock - LICENSE - README.md - CNAME
30.321839
131
0.758529
c3f9e2f131f7442fc9b1ff342a2be0c07e293ffe
3,318
yml
YAML
_config.yml
00-Evan/00-Evan.github.io
cbd5797051f9dc28c966d53c40dd2cad6c4f2bc5
[ "MIT" ]
3
2020-09-17T10:36:20.000Z
2021-11-29T17:52:22.000Z
_config.yml
00-Evan/00-Evan.github.io
cbd5797051f9dc28c966d53c40dd2cad6c4f2bc5
[ "MIT" ]
4
2019-11-09T16:08:22.000Z
2020-10-04T16:02:19.000Z
_config.yml
00-Evan/00-Evan.github.io
cbd5797051f9dc28c966d53c40dd2cad6c4f2bc5
[ "MIT" ]
6
2019-04-10T22:18:40.000Z
2021-11-16T19:45:01.000Z
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'bundle exec jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Shattered Pixel email: [email protected] description: >- # this means to ignore newlines until "baseurl:" This is Shattered Pixel, the home page of Evan's various works, most notably Shattered Pixel Dungeon baseurl: "" # the subpath of your site, e.g. /blog url: "https://ShatteredPixel.com" # the base hostname & protocol for your site, e.g. http://example.com repository: "00-Evan/00-Evan.github.io" twitter_username: ShatteredPixel github_username: 00-Evan minimal_mistakes_skin: "dark" # "default", air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum" "sunrise" search: true breadcrumbs: true logo: /assets/images/masthead.png # Analytics code, please set a tracking id or remove this if you're forking this repository analytics: provider: "google-universal" google: #tracking_id: <YOUR_ID_HERE> #these parameters are configured to minimize data collection anonymize_ip: true cookie_duration: 0 campaign_cookies: false ad_features: false # Build settings markdown: kramdown remote_theme: "mmistakes/[email protected]" plugins: - jekyll-feed - jekyll-include-cache - jekyll-remote-theme - jekyll-sitemap include: - _pages exclude: - Gemfile - Gemfile.lock - LICENSE - README.md author: name : "Evan Debenham" bio : "I'm the person behind Shattered Pixel. I make videogames and blog posts, I hope you enjoy them!" avatar : "/assets/images/avatar.png" links: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: "mailto:[email protected]" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" url: "https://twitter.com/ShatteredPixel" - label: "GitHub" icon: "fab fa-fw fa-github" url: "https://github.com/00-Evan" footer: links: - label: "Email" icon: "fas fa-fw fa-envelope-square" url: "mailto:[email protected]" - label: "Twitter" icon: "fab fa-fw fa-twitter-square" url: "https://twitter.com/ShatteredPixel" - label: "GitHub" icon: "fab fa-fw fa-github" url: "https://github.com/00-Evan" defaults: # _posts - scope: path: "" type: posts values: layout: single author_profile: true read_time: true show_date: true share: false related: true classes: wide permalink: /blog/:categories/:title:output_ext header: teaser: "/assets/images/blog-header.png" feed: excerpt_only: true tags: path: "/feed_by_tag/"
31.009346
117
0.688065
0668bfff250213807d2cf4b35f5bd7adebef6e59
369
yaml
YAML
src/app.yaml
00-MSME/a00_registry
5f8c3b375a6faf4e059deb54b3ab5502712f756e
[ "MIT" ]
1
2019-04-26T03:50:37.000Z
2019-04-26T03:50:37.000Z
src/app.yaml
00-MSME/a00_registry
5f8c3b375a6faf4e059deb54b3ab5502712f756e
[ "MIT" ]
null
null
null
src/app.yaml
00-MSME/a00_registry
5f8c3b375a6faf4e059deb54b3ab5502712f756e
[ "MIT" ]
null
null
null
runtime: python27 api_version: 1 threadsafe: yes handlers: - url: /admin/.* script: admin.app login: admin - url: /api/.* script: api.app - url: /(person|entity|config)/.* script: account.app login: required - url: /.* script: main.app libraries: - name: jinja2 version: "2.6" - name: markupsafe version: "0.15" - name: pycrypto version: "2.6.1"
13.666667
33
0.644986
084617905570ce0fa3f0af865ae421f2e6339496
392
yaml
YAML
.github/workflows/run-tests.yaml
00-matt/addressutil
51da53efd33247788756b7e4f0cfbbb3b95a7816
[ "MIT" ]
1
2020-07-03T04:36:26.000Z
2020-07-03T04:36:26.000Z
.github/workflows/run-tests.yaml
00-matt/addressutil
51da53efd33247788756b7e4f0cfbbb3b95a7816
[ "MIT" ]
4
2019-12-04T15:46:29.000Z
2020-01-09T17:01:42.000Z
.github/workflows/run-tests.yaml
00-matt/addressutil
51da53efd33247788756b7e4f0cfbbb3b95a7816
[ "MIT" ]
1
2020-11-07T07:05:14.000Z
2020-11-07T07:05:14.000Z
name: Run Tests on: [push, pull_request] jobs: test: name: Test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-java@v1 with: java-version: 11 - uses: actions/cache@v1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - run: mvn -B test --file pom.xml
23.058824
65
0.52551
1a201da4685492af78f6056adaf40a24fee0a7af
357
yaml
YAML
roles/wownerod/defaults/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/defaults/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/defaults/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
--- wownero_remote_url: 'https://git.wownero.com/attachments/ff0be4f5-37b6-4208-aee3-0ca4c8e97c89' wownero_remote_hash: 'sha256:709b905cf853035b1e1660f9de54be44ef4fcfef3924489bff38dc090866ff58' wownero_version: "0.9.2.2" wownero_bin_dir: "/usr/local/bin" wownerod_path: "{{ wownero_bin_dir }}/wownerod" wownerod_p2p_port: "34567" wownerod_rpc_port: "34568"
39.666667
94
0.820728
21a1a35c0a286a881bf2360e8fc40f3690f4b221
111
yaml
YAML
roles/wownerod/handlers/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/handlers/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/handlers/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
--- - name: restart wownerod systemd: daemon_reload: yes name: wownerod.service state: restarted
15.857143
26
0.675676
8000e1c394da02e2bb928c2b5ba563f82da4088e
1,657
yaml
YAML
roles/wownerod/tasks/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/tasks/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/tasks/main.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
--- - name: Install ufw apt: name=ufw state=present tags: firewall - name: Limit ssh ufw: rule=limit port=ssh proto=tcp tags: firewall - name: Enable ufw ufw: state=enabled tags: firewall - name: Check if wownerod is installed stat: path="{{ wownerod_path }}" register: stat_wownerod_path - name: Check wownerod version command: "{{ wownerod_path }} --version" register: wownerod_version_cmd when: stat_wownerod_path.stat.exists - name: Parse wownerod version set_fact: installed_wownerod_version: "{{ wownerod_version_cmd.stdout | regex_search('\\d+\\.\\d+\\.\\d+\\.\\d') }}" when: stat_wownerod_path.stat.exists - name: Install wownerod import_tasks: install.yaml when: not stat_wownerod_path.stat.exists or not installed_wownerod_version == wownero_version - name: Create wownero user user: name: wownero create_home: no home: /var/lib/wownero shell: /bin/false system: yes - name: Install systemd unit file template: src: wownerod.service.j2 dest: /etc/systemd/system/wownerod.service owner: root group: root mode: '0644' notify: - restart wownerod - name: Install wownerod config file template: src: wownerod.conf.j2 dest: /etc/wownerod.conf owner: root group: root mode: '0644' notify: - restart wownerod - name: Allow wownerod p2p port ufw: rule: allow port: "{{ wownerod_p2p_port }}" proto: tcp tags: firewall - name: Allow wownerod rpc port ufw: rule: allow port: "{{ wownerod_rpc_port }}" proto: tcp tags: firewall - name: Enable wownerod service systemd: name: wownerod.service enabled: true
25.106061
110
0.689197
788b63f5fb26aca2834c9d5c1315eff02f3bc9a0
62
yaml
YAML
site.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
site.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
site.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
--- - hosts: all gather_facts: true roles: - wownerod
10.333333
20
0.596774
8b797227b489be4ba716c1a73c853bd4a1535c6d
542
yaml
YAML
roles/wownerod/tasks/install.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/tasks/install.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
roles/wownerod/tasks/install.yaml
00-matt/ansible-remote-node
d341a0d3aad4f0e51cb614ffc7a032fbda5a4805
[ "Unlicense" ]
null
null
null
--- - name: Download release tarball get_url: url: "{{ wownero_remote_url }}" dest: "/tmp/wownero-linux-v{{ wownero_version }}.tar.bz2" checksum: "{{ wownero_remote_hash }}" owner: root group: root mode: '0755' - name: Extract wownerod unarchive: remote_src: yes src: "/tmp/wownero-linux-v{{ wownero_version }}.tar.bz2" dest: "{{ wownero_bin_dir }}" extra_opts: - "--strip-components=1" - "--wildcards" - "--add-file" - "wownero-*/wownerod" notify: - restart wownerod
24.636364
61
0.601476
e9bbf49e23138f5ca5527f8d6fb386795037a504
1,581
yml
YAML
.github/workflows/tox.yml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
69
2019-07-19T06:26:49.000Z
2022-03-31T16:34:38.000Z
.github/workflows/tox.yml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
38
2019-07-27T09:09:46.000Z
2022-03-31T13:59:49.000Z
.github/workflows/tox.yml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
25
2019-07-24T10:06:29.000Z
2022-03-31T11:12:15.000Z
name: tox on: push: branches: - main pull_request: branches: - main jobs: build: name: ${{ matrix.name }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: name: [ "docs", "py36", "py37", "py38", "py39", "lint", "packaging", ] os: [ "ubuntu-latest", ] include: - name: docs python: "3.6" os: ubuntu-latest tox_env: docs - name: py36 python: "3.6" os: ubuntu-latest tox_env: py36 - name: py37 python: "3.7" os: ubuntu-latest tox_env: py37 - name: py38 python: "3.8" os: ubuntu-latest tox_env: py38 - name: py39 python: "3.9" os: ubuntu-latest tox_env: py39 - name: "lint" python: "3.7" os: ubuntu-latest tox_env: "lint" - name: "packaging" python: "3.7" os: ubuntu-latest tox_env: "packaging" steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install tox - name: Test run: "tox -e ${{ matrix.tox_env }}"
20.532468
48
0.422517
7a14aae977aa09949eadc25598901a78ab2ecb7e
985
yaml
YAML
.pre-commit-config.yaml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
69
2019-07-19T06:26:49.000Z
2022-03-31T16:34:38.000Z
.pre-commit-config.yaml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
38
2019-07-27T09:09:46.000Z
2022-03-31T13:59:49.000Z
.pre-commit-config.yaml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
25
2019-07-24T10:06:29.000Z
2022-03-31T11:12:15.000Z
--- repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.3.0 # Use the ref you want to point at hooks: - id: trailing-whitespace - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - id: check-executables-have-shebangs - repo: https://github.com/python/black rev: 21.7b0 hooks: - id: black - repo: https://github.com/pycqa/flake8 rev: 3.9.2 hooks: - id: flake8 - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.910 hooks: - id: mypy # empty args needed in order to match mypy cli behavior args: [] entry: mypy doc8/ pass_filenames: false additional_dependencies: - types-mock - types-setuptools - types-docutils - types-toml # TODO: activate pylint # - repo: https://github.com/PyCQA/pylint # rev: v2.9.3 # hooks: # - id: pylint # additional_dependencies: []
25.921053
63
0.581726
7664544bec2189671b1192cfe24727163b9d9591
241
yaml
YAML
.pre-commit-hooks.yaml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
69
2019-07-19T06:26:49.000Z
2022-03-31T16:34:38.000Z
.pre-commit-hooks.yaml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
38
2019-07-27T09:09:46.000Z
2022-03-31T13:59:49.000Z
.pre-commit-hooks.yaml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
25
2019-07-24T10:06:29.000Z
2022-03-31T11:12:15.000Z
--- # For use with pre-commit. # See usage instructions at http://pre-commit.com - id: doc8 name: doc8 description: This hook runs doc8 for linting docs entry: python -m doc8 language: python files: \.rst$ require_serial: true
18.538462
51
0.697095
d142b4d42abefed5bc156f3b4e7dc859b7ece3e8
1,278
yml
YAML
.github/labels.yml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
69
2019-07-19T06:26:49.000Z
2022-03-31T16:34:38.000Z
.github/labels.yml
00-matt/doc8
b308cb12bc0a6db3e7f0e338020c0c4e4314e28a
[ "Apache-2.0" ]
38
2019-07-27T09:09:46.000Z
2022-03-31T13:59:49.000Z
.github/labels.yml
pycontribs/meta
72823a6207dde244fa0847255f9da3968b9341f0
[ "MIT" ]
25
2019-07-24T10:06:29.000Z
2022-03-31T11:12:15.000Z
# Format and labels used aim to match those used by Ansible project # https://github.com/marketplace/actions/github-labeler - name: bug color: "fbca04" description: "This issue/PR relates to a bug." - name: deprecated color: "fef2c0" description: "This issue/PR relates to a deprecated module." - name: docs color: "4071a5" description: "This issue/PR relates to or includes documentation." - name: enhancement color: "ededed" description: "This issue/PR relates to a feature request." - name: feature color: "006b75" description: "This issue/PR relates to a feature request." - name: major color: "c6476b" description: "Marks an important and likely breaking change." - name: packaging color: "4071a5" description: "Packaging category" - name: performance color: "555555" description: "Relates to product or testing performance." - name: skip-changelog color: "eeeeee" description: "Can be missed from the changelog." - name: stale color: "eeeeee" description: "Not updated in long time, will be closed soon." - name: wontfix color: "eeeeee" description: "This will not be worked on" - name: test color: "0e8a16" description: "This PR relates to tests, QA, CI." - name: gate color: "41b6e6" description: "Gate PR in Zuul CI"
30.428571
68
0.71831
80d8ac2f3bbeb544a95984f3ed1ea8ea97a14096
1,198
yaml
YAML
.github/workflows/test.yaml
00-matt/flibc
8765bd32910d07fc0df0154585cc1a6e65af091c
[ "MIT" ]
3
2020-01-26T12:28:46.000Z
2021-12-15T02:51:20.000Z
.github/workflows/test.yaml
00-matt/flibc
8765bd32910d07fc0df0154585cc1a6e65af091c
[ "MIT" ]
1
2020-06-05T13:59:29.000Z
2020-06-05T13:59:29.000Z
.github/workflows/test.yaml
00-matt/flibc
8765bd32910d07fc0df0154585cc1a6e65af091c
[ "MIT" ]
1
2020-06-04T21:53:04.000Z
2020-06-04T21:53:04.000Z
name: Run Tests on: [push, pull_request] jobs: test-make: name: Test (Make) runs-on: ubuntu-latest strategy: fail-fast: false matrix: compiler: [gcc, clang] steps: - uses: actions/checkout@v2 - shell: bash run: | sudo apt update -qq sudo apt install -y \ ${{ matrix.compiler }} \ make - shell: bash run: | make CC=${{ matrix.compiler }} make CC=${{ matrix.compiler }} -C test flibc-test - shell: bash run: ./test/flibc-test test-cmake: name: Test (CMake) runs-on: ubuntu-latest strategy: fail-fast: false matrix: compiler: [gcc, clang] steps: - uses: actions/checkout@v2 - shell: bash run: | sudo apt update -qq sudo apt install -y \ ${{ matrix.compiler }} \ cmake \ make - shell: bash run: >- cmake -Bbuild -DCMAKE_C_COMPILER=${{ matrix.compiler }} -DFLIBC_BUILD_TESTS=ON - shell: bash run: make -Cbuild all - shell: bash run: ./build/test/flibc-test
23.490196
59
0.496661
1d6aad3a00f0a71c5ef9f69163e8c863b7d95834
139
yaml
YAML
releasenotes/notes/issue-44-66b78577e9534f16.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/issue-44-66b78577e9534f16.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/issue-44-66b78577e9534f16.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- upgrade: - | Downloaded patches, series and bundles are now saved to a temporary directory instead of the current directory.
23.166667
71
0.719424
eb9f7148ed9f34127581ffd786c56e06492bdae5
139
yaml
YAML
releasenotes/notes/issue-48-694495f722119fed.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/issue-48-694495f722119fed.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/issue-48-694495f722119fed.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- fixes: - | An info-level log is now correctly skipped when downloading patches, bundles or series to ``STDOUT`` on Python 3.
23.166667
72
0.676259
e51e3fabe7c3a85501a889cb8385c0ce42ad124b
186
yaml
YAML
releasenotes/notes/issue-40-add82959d7442cfa.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/issue-40-add82959d7442cfa.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/issue-40-add82959d7442cfa.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- features: - | It is no longer necessary to provide credentials when interacting with read-only APIs. You will continue to be prompted for credentials for write access.
26.571429
78
0.725806
0a39fd975b5999f7f8cc3233baa54f3f0345662f
271
yaml
YAML
releasenotes/notes/patch-states-b88240569f8474f1.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/patch-states-b88240569f8474f1.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/patch-states-b88240569f8474f1.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- features: - | The ``--state`` option of the ``git pw patch update`` command now supports auto-complete for the default set of states provided by Patchwork. If necessary, these states can be overridden using the ``pw.states`` ``git config`` setting.
33.875
78
0.682657
ee72a3f47e96e6ae514b2a7d72bf488ca258c4ed
2,556
yaml
YAML
.github/workflows/ci.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
null
null
null
.github/workflows/ci.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
null
null
null
.github/workflows/ci.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
null
null
null
--- name: CI on: - push - pull_request jobs: lint: name: Run linters runs-on: ubuntu-latest steps: - name: Checkout source code uses: actions/checkout@v2 - name: Set up Python 3.9 uses: actions/setup-python@v2 with: python-version: 3.9 - name: Install dependencies run: python -m pip install tox - name: Run tox run: tox -e pep8,mypy test: name: Run unit tests runs-on: ubuntu-latest strategy: matrix: python: [3.6, 3.7, 3.8, 3.9] steps: - name: Checkout source code uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - name: Install dependencies run: python -m pip install tox - name: Run unit tests (via tox) # Run tox using the version of Python in `PATH` run: tox -e py docs: name: Build docs runs-on: ubuntu-latest steps: - name: Checkout source code uses: actions/checkout@v2 with: fetch-depth: 0 - name: Set up Python 3.9 uses: actions/setup-python@v2 with: python-version: 3.9 - name: Install dependencies run: python -m pip install tox - name: Build docs (via tox) run: tox -e docs - name: Archive build results uses: actions/upload-artifact@v2 with: name: html-docs-build path: docs/_build/html retention-days: 7 release: name: Upload release artifacts runs-on: ubuntu-latest needs: test if: github.event_name == 'push' steps: - name: Checkout source code uses: actions/checkout@v2 with: fetch-depth: 0 - name: Set up Python 3.9 uses: actions/setup-python@v2 with: python-version: 3.9 - name: Install dependencies run: python -m pip install build - name: Build a binary wheel and a source tarball run: python -m build --sdist --wheel --outdir dist/ . - name: Publish distribution to Test PyPI uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ - name: Publish distribution to PyPI if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.PYPI_API_TOKEN }}
28.719101
61
0.577465
32401091df259bb56a79c1e59b293f5936e0493e
64
yaml
YAML
releasenotes/notes/drop-python34-support-5e01360fff605972.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/drop-python34-support-5e01360fff605972.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/drop-python34-support-5e01360fff605972.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- upgrade: - | Support for Python 3.4 has been dropped.
12.8
44
0.609375
e7290213efacc77727085c877208fc1feaa5f6d8
139
yaml
YAML
releasenotes/notes/python-2-deprecation-c87e311384eab29b.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/python-2-deprecation-c87e311384eab29b.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/python-2-deprecation-c87e311384eab29b.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- other: - | *git-pw* 1.9.0 will be the last version to support Python 2.7. *git-pw* 2.0.0 will require Python 3.5 or greater.
23.166667
75
0.618705
823ec2872537cfac79a2b74caccabfe5944bbcfa
108
yaml
YAML
releasenotes/notes/issue-47-a9ac87642050d289.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/issue-47-a9ac87642050d289.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/issue-47-a9ac87642050d289.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- fixes: - | Resolved an issue that prevented viewing patch diffs/mboxes in stdout on Python 3.
18
76
0.675926
a3505cd18beee2a38c94fa749318d3d601a5c430
572
yaml
YAML
releasenotes/notes/download-series-to-separate-patches-eae647315dd4d2e1.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
24
2017-07-13T03:05:33.000Z
2022-02-24T12:09:38.000Z
releasenotes/notes/download-series-to-separate-patches-eae647315dd4d2e1.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
55
2017-07-21T14:02:21.000Z
2021-07-26T16:11:27.000Z
releasenotes/notes/download-series-to-separate-patches-eae647315dd4d2e1.yaml
00-matt/git-pw
381b5351f68dc44a62fb26f91540285069899662
[ "MIT" ]
18
2017-08-17T06:01:23.000Z
2021-09-26T18:50:59.000Z
--- features: - | The ``series download`` command now accepts an optional toggle flag pair, ``--separate`` / ``--combine``, to either download series patches to separate files or to a combined mbox file (default). - | The ``patch download``, ``bundle download``, and ``series download`` commands now accept a directory for the ``OUTPUT`` argument as well as a file. If a directory is provided, the file will use the name provided by Patchwork but will be downloaded to the specified directory rather than the current working directory.
44
77
0.699301