platformos-check 0.4.10 → 0.4.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 269921738309c4cc1a1d7afef16318af6a75f050fad261530d008f53c464ce62
4
- data.tar.gz: 0a3c1b2704f40a8244a4608ff6d9f26b0cb7757f7e93182e875edb55344c6fd9
3
+ metadata.gz: c5795a4dfbd11ce9650dd968756ebf8762eab1528fc41a2bb968eeb6b7bfc061
4
+ data.tar.gz: ba6029d4a33bd1d91e600ec33aeebd9de2660567188073dfe64db36b39415ea7
5
5
  SHA512:
6
- metadata.gz: 6de2d63705409c6b3d818f48799c5c65809c26304b64d675248c21a170562098af119d954c4d5ea77f0a09559c571e64ea10a8f3417fd406c7644999048e8916
7
- data.tar.gz: bc35549e8dc86f7f924937a9abc7306dfb6629c05311e38b092219432b9984a855b5d1bbeda8e23503cbe903fbebeff2fb4e4538a012ec4a0dd2697a8bc6f183
6
+ metadata.gz: ffa173e4a4441e4d49da110129c3c964c74c2b011da9d45e4b51f4385eec43d2aa374f03754c048ec58ff8e934924f38b36f94bfd4a61e3b873324a489886ed5
7
+ data.tar.gz: 7c96d26c1b529b670fa316dd7202f23888dd6ffd711d9249a14bfbea516528ca9793ff3a44a80e1b032b682080bf99d190e6a11d8c8a56f2a84b236a025bd9af
@@ -0,0 +1,57 @@
1
+ name: Build LSP for windows
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ # push:
6
+ # branches:
7
+ # - main
8
+ push:
9
+ tags:
10
+ - '*'
11
+
12
+ jobs:
13
+ build:
14
+ runs-on: windows-latest
15
+ permissions:
16
+ contents: write
17
+
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v2
21
+
22
+ - name: Setup Ruby 3.2
23
+ uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: 3.2
26
+
27
+ - name: Install dependencies
28
+ run: |
29
+ cd build/windows
30
+ gem install ocran
31
+ bundle install
32
+
33
+ - name: Run build script
34
+ shell: bash
35
+ run: |
36
+ cd build/windows
37
+ ./build.sh
38
+ ls
39
+
40
+ - name: Release
41
+ uses: ncipollo/release-action@v1
42
+ with:
43
+ artifacts: "build/windows/lsp.exe"
44
+ body: "New windows release"
45
+
46
+ # - name: Release
47
+ # uses: softprops/action-gh-release@v1
48
+ # with:
49
+ # tag_name: ${{ github.ref }}
50
+ # name: Release ${{ github.ref }}
51
+ # body: |
52
+ # New windows version
53
+ # draft: true
54
+ # prerelease: true
55
+ # files: |
56
+ # build/windows/lsp.exe
57
+ #
data/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ v0.4.12 / 2024-04-13
2
+ ==================
3
+
4
+ * Suggest filters with input_type 'untyped'
5
+
6
+ v0.4.11 / 2024-03-11
7
+ ==================
8
+
9
+ * Do not throw parse error for empty GraphQL file
10
+ * enable MissingTemplate Check in single file mode
11
+ * report if file is blank in MissingTemplate check
12
+ * add support for background tag in MissingTemplate check
13
+
14
+
1
15
  v0.4.10 / 2024-02-19
2
16
  ==================
3
17
 
@@ -1,7 +1,8 @@
1
- #!/usr/bin/env sh
1
+ #!/usr/bin/env bash
2
+
3
+ # --gem-file /c/Ruby32-x64/bin/etc/ssl \
2
4
 
3
5
  ocran run.rb --output lsp.exe --add-all-core --gemfile ./Gemfile --no-dep-run --gem-full --gem-full=platformos-check --console \
4
- --gem-file /c/Ruby32-x64/bin/etc/ssl \
5
6
  --dll ruby_builtin_dlls/libyaml-0-2.dll \
6
7
  --dll ruby_builtin_dlls/zlib1.dll \
7
8
  --dll ruby_builtin_dlls/libssl-3-x64.dll \