Skip to content

Commit

Permalink
Make reserved keywords file into a raw txt file
Browse files Browse the repository at this point in the history
- Reserve import related keywords
- Updates for deps
  • Loading branch information
Cypher1 committed Apr 20, 2024
1 parent 6c1ae20 commit 59e26e2
Show file tree
Hide file tree
Showing 15 changed files with 1,105 additions and 355 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tako.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ jobs:
path: |
C:/Program Files/LLVM
./llvm
key: llvm-15.0
key: llvm-17.0
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "15.0"
version: "17.0"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
- name: Setup LLVM_PATH
run: "export LLVM_SYS_150_PREFIX=\"$LLVM_PATH\""
run: "export LLVM_SYS_170_PREFIX=\"$LLVM_PATH\""
- name: Check llvm path
run: "echo \"LLVM_PATH: $LLVM_PATH\"; echo \"LLVM_SYS_150_PREFIX: $LLVM_SYS_150_PREFIX\"; ls $LLVM_SYS_150_PREFIX"
run: "echo \"LLVM_PATH: $LLVM_PATH\"; echo \"LLVM_SYS_170_PREFIX: $LLVM_SYS_170_PREFIX\"; ls $LLVM_SYS_170_PREFIX"
- name: Run tests
run: cargo test --locked --release --verbose
- name: Run ignored tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/takolib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ jobs:
path: |
C:/Program Files/LLVM
./llvm
key: llvm-15.0
key: llvm-17.0
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "15.0"
version: "17.0"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
- name: Setup LLVM_PATH
run: "export LLVM_SYS_150_PREFIX=\"$LLVM_PATH\""
run: "export LLVM_SYS_170_PREFIX=\"$LLVM_PATH\""
- name: Check llvm path
run: "echo \"LLVM_PATH: $LLVM_PATH\"; echo \"LLVM_SYS_150_PREFIX: $LLVM_SYS_150_PREFIX\"; ls $LLVM_SYS_150_PREFIX"
run: "echo \"LLVM_PATH: $LLVM_PATH\"; echo \"LLVM_SYS_170_PREFIX: $LLVM_SYS_170_PREFIX\"; ls $LLVM_SYS_170_PREFIX"
- name: Run tests
run: cargo test --locked --release --verbose
- name: Run ignored tests
Expand Down
Loading

0 comments on commit 59e26e2

Please sign in to comment.