Skip to content

ci: merge staging to master #74

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 40 commits into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
987c5b6
feat: ci update
brynblack Jan 22, 2025
9fa4b84
fix: rename workflow
brynblack Jan 22, 2025
ccd8cb1
feat: converting to esm
CMCDragonkai Aug 12, 2023
030c048
deps: updating `@matrixai/workers` to `^2.0.0`
tegefaulkes Mar 14, 2025
7e85e80
fix: fixing up `@matrixai/workers` usage
tegefaulkes Mar 14, 2025
4b8285e
build: pinning nixpkgs version to fix dependency problem with gyp
tegefaulkes Mar 20, 2025
39e6652
tests: fixed up tests using workers
tegefaulkes Mar 20, 2025
0fa8ba8
fix: fixed up benches
tegefaulkes Mar 20, 2025
ff561b3
bench: ran benchmarks
tegefaulkes Mar 20, 2025
11f1ba6
chore: lint
tegefaulkes Mar 20, 2025
3d9522f
Merge pull request #68 from MatrixAI/feature-esm-migrate
tegefaulkes Mar 20, 2025
d9f163a
6.0.0
tegefaulkes Mar 20, 2025
6b687c6
docs: generating docs
tegefaulkes Mar 20, 2025
0b1a175
6.0.1
tegefaulkes Mar 20, 2025
0f61535
chore: fixing up pyton version
tegefaulkes Mar 20, 2025
3a5aab6
6.0.2
tegefaulkes Mar 20, 2025
c8b22b2
fix: use python 310
brynblack Mar 24, 2025
e86344e
6.0.3
brynblack Mar 24, 2025
734c763
fix: force python variable
brynblack Mar 24, 2025
9461d3e
6.0.4
brynblack Mar 24, 2025
834e226
chore: lintfix
brynblack Mar 24, 2025
c9174e5
6.0.5
brynblack Mar 24, 2025
ef75140
fix: bugfix
brynblack Mar 24, 2025
28dabab
6.0.6
brynblack Mar 24, 2025
baf4e25
fix: enforce python environment variables
brynblack Mar 24, 2025
d634206
6.0.7
brynblack Mar 24, 2025
3bddf62
fix: use `--force` for linking python
brynblack Mar 24, 2025
d8f3287
6.0.8
brynblack Mar 24, 2025
1a8ddb7
fix: force python path using `GITHUB_PATH`
brynblack Mar 24, 2025
ae255d3
6.0.9
brynblack Mar 24, 2025
52f6f02
fix: symlink python3 path
brynblack Mar 24, 2025
e28fb3b
6.0.10
brynblack Mar 24, 2025
3d73709
fix: revert python fixes and rely on CI fixes
brynblack Mar 25, 2025
1fa62ae
6.0.11
brynblack Mar 25, 2025
6410c11
build: updating `node-gyp` version to work with newer python versions
tegefaulkes Mar 25, 2025
385a665
6.0.12
tegefaulkes Mar 25, 2025
4df68f0
6.0.13
tegefaulkes Mar 25, 2025
b57bad3
6.0.14
tegefaulkes Mar 26, 2025
16bab6f
build: testing removing pythong from choco install script
tegefaulkes Mar 26, 2025
cf2e6d9
6.0.15
tegefaulkes Mar 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,18 @@
"jest": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier"
],
"plugins": [
"import"
],
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"import"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"linebreak-style": ["error", "unix"],
"no-empty": 1,
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/codesee-arch-diagram.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "CI / Staging"

on:
push:
branches:
- staging
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
use-native-library-js-staging:
permissions:
contents: write
actions: write
checks: write
pull-requests: write
uses: MatrixAI/.github/.github/workflows/native-library-js-staging.yml@master
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}

Loading
Loading