You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "brunocous (via GitHub)" <gi...@apache.org> on 2023/05/11 15:11:41 UTC

[GitHub] [arrow-ballista] brunocous commented on issue #717: Building Docker images on main branch fails

brunocous commented on issue #717:
URL: https://github.com/apache/arrow-ballista/issues/717#issuecomment-1544173285

   Building still fails on main (commit 9b4a12191aac37bda6d0c5e933377698687872b9).
   
   > Compiling pest_generator v2.5.6
   > error[E0004]: non-exhaustive patterns: `pest_meta::optimizer::OptimizedExpr::NodeTag(_, _)` not covered
   >    --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_generator-2.5.6/src/generator.rs:378:11
   >     |
   > 378 |     match expr {
   >     |           ^^^^ pattern `pest_meta::optimizer::OptimizedExpr::NodeTag(_, _)` not covered
   >     |
   > note: `pest_meta::optimizer::OptimizedExpr` defined here
   >    --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_meta-2.6.0/src/optimizer/mod.rs:142:5
   >     |
   > 114 | pub enum OptimizedExpr {
   >     | ----------------------
   > ...
   > 142 |     NodeTag(Box<OptimizedExpr>, String),
   >     |     ^^^^^^^ not covered
   >     = note: the matched value is of type `pest_meta::optimizer::OptimizedExpr`
   > help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   >     |
   > 519 ~         }
   > 520 +         pest_meta::optimizer::OptimizedExpr::NodeTag(_, _) => todo!()
   >     |
   > 
   > error[E0004]: non-exhaustive patterns: `pest_meta::optimizer::OptimizedExpr::NodeTag(_, _)` not covered
   >    --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_generator-2.5.6/src/generator.rs:524:11
   >     |
   > 524 |     match expr {
   >     |           ^^^^ pattern `pest_meta::optimizer::OptimizedExpr::NodeTag(_, _)` not covered
   >     |
   > note: `pest_meta::optimizer::OptimizedExpr` defined here
   >    --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/pest_meta-2.6.0/src/optimizer/mod.rs:142:5
   >     |
   > 114 | pub enum OptimizedExpr {
   >     | ----------------------
   > ...
   > 142 |     NodeTag(Box<OptimizedExpr>, String),
   >     |     ^^^^^^^ not covered
   >     = note: the matched value is of type `pest_meta::optimizer::OptimizedExpr`
   > help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
   >     |
   > 651 ~         }
   > 652 +         pest_meta::optimizer::OptimizedExpr::NodeTag(_, _) => todo!()
   >     |
   > 
   > For more information about this error, try `rustc --explain E0004`.
   > error: could not compile `pest_generator` due to 2 previous errors
   > warning: build failed, waiting for other jobs to finish..


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org