summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-07-29 11:24:49 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-07-29 11:24:49 +0900
commit63a983c4d7925fe82d84cece2530c44bd0f89655 (patch)
tree17c251ba02a2b2771f08c8372f5ddef9423f72a8 /.github
parent5cde5983d98fbfe9d2dcc7a45a0da6fa8011aded (diff)
downloadmruby-63a983c4d7925fe82d84cece2530c44bd0f89655.tar.gz
mruby-63a983c4d7925fe82d84cece2530c44bd0f89655.zip
y.tab.c: remove auto generated `y.tab.c` from repository.
It used to be generated in the build, but `bison` required to generation was too hard to install correctly on MacOS and Windows (version mismatch and package maneger issues). This is retry.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6ee80eefd..bc44b563e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -123,7 +123,7 @@ jobs:
--only-site --site http://mirrors.kernel.org/sourceware/cygwin/
--root ${{ env.cygwin-root }}
--local-package-dir ${{ env.package-dir }}
- --packages gcc-core,gcc-g++,ruby
+ --packages gcc-core,gcc-g++,ruby,bison
- name: Set PATH for Cygwin
run: |
echo '::set-env name=PATH::${{ env.cygwin-root }}\bin;${{ env.cygwin-root }}\usr\bin'
@@ -151,5 +151,6 @@ jobs:
- name: Build and test
shell: cmd
run: |
+ choco install winflexbison3
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
rake -m test:build && rake test:run