-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into fix_interface_gener…
…ic_2
- Loading branch information
Showing
352 changed files
with
11,261 additions
and
14,504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: More extensive but slower tests | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
- '**.yml' | ||
- '!**/more_extensive_but_slower_tests_ci.yml' | ||
- 'examples/**' | ||
- 'cmd/tools/**' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
- '**.yml' | ||
- '!**/more_extensive_but_slower_tests_ci.yml' | ||
- 'examples/**' | ||
- 'cmd/tools/**' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.sha || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
more-tests: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-12, macos-14, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 121 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build V | ||
if: runner.os != 'Windows' | ||
run: make -j4 && ./v symlink | ||
- name: Build V (Windows) | ||
if: runner.os == 'Windows' | ||
run: ./make.bat && ./v symlink | ||
|
||
- name: Run additional crypto tests | ||
run: | | ||
v retry -- git clone --depth 1 https://github.com/vlang/hash_validation_tests | ||
v test hash_validation_tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
name: Workflow Lint | ||
|
||
## Note: to install `prettier` locally, see https://prettier.io/docs/en/install, | ||
## or just: `npm install --save-dev --save-exact prettier` | ||
|
||
## If you already have `prettier` installed, to run it locally, | ||
## just run: `npx prettier --check **.yml` . | ||
|
||
on: | ||
push: | ||
paths: | ||
|
@@ -16,4 +22,4 @@ jobs: | |
- name: Verify formatting | ||
uses: creyD/[email protected] | ||
with: | ||
prettier_options: --check .github/**/**.yml | ||
prettier_options: --check **.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.