- 
                Notifications
    You must be signed in to change notification settings 
- Fork 9
don't use container #3
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
          
     Open
      
      
            robkooper
  wants to merge
  12
  commits into
  master
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
fix-github-actions
  
      
      
   
  
    
  
  
  
 
  
      
    base: master
Could not load branches
            
              
  
    Branch not found: {{ refName }}
  
            
                
      Loading
              
            Could not load tags
            
            
              Nothing to show
            
              
  
            
                
      Loading
              
            Are you sure you want to change the base?
            Some commits from the old base branch may be removed from the timeline,
            and old review comments may become outdated.
          
          
  
     Open
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            12 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      42a7d94
              
                don't use container
              
              
                robkooper 4e14bd6
              
                use sudo
              
              
                robkooper 7a03da3
              
                use sudo
              
              
                robkooper aeacd7f
              
                use sudo
              
              
                robkooper 9b73dbd
              
                more fixes
              
              
                robkooper 42f09fc
              
                fix docker
              
              
                robkooper caa8c1d
              
                fix docker
              
              
                robkooper 17a9d54
              
                fix docker
              
              
                robkooper 315f712
              
                install xml2
              
              
                robkooper f420207
              
                Merge branch 'master' into fix-github-actions
              
              
                robkooper 6023efd
              
                Update ci.yml
              
              
                robkooper f5fbf99
              
                Update .github/workflows/ci.yml
              
              
                robkooper File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -2,7 +2,6 @@ on: | |
| push: | ||
| branches: | ||
| - master | ||
| - "*" | ||
| pull_request: | ||
|  | ||
|  | ||
|  | @@ -21,7 +20,6 @@ jobs: | |
| - {os: ubuntu-16.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"} | ||
| - {os: ubuntu-18.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} | ||
|  | ||
| container: pecan/depends:develop | ||
| services: | ||
| postgres: | ||
| image: mdillon/postgis:9.5 | ||
|  | @@ -49,14 +47,18 @@ jobs: | |
| - uses: actions/checkout@v2 | ||
|  | ||
| #- name: install utils | ||
| # run: apt-get update && apt-get install -y openssh-client postgresql-client curl | ||
| # run: | | ||
| # sudo apt-get update | ||
| # sudo apt-get install -y openssh-client postgresql-client curl | ||
|  | ||
| - name: db setup | ||
| uses: docker://pecan/db:latest | ||
|  | ||
| - name: create account | ||
| uses: docker://pecan/bety:latest | ||
| args: user carya illinois "Carya Demo User" [email protected] 1 1 | ||
| uses: docker://pecan/bety:develop | ||
| with: | ||
| # entrypoint: /home/bety/script/betyuser.sh | ||
| args: user carya illinois "Carya Demo User" [email protected] 1 1 | ||
|  | ||
| - uses: r-lib/actions/setup-r@master | ||
| with: | ||
|  | ||
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW, I'm currently testing this out on a personal branch of this -- https://github.com/ashiklom/rpecanapi/runs/1386059263?check_suite_focus=true
UPDATE: This made it past this line, but failed on the actual
R CMD checkstep.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though, I guess setting
entrypoint: /home/bety/script/betyuser.shmight be a more straightforward version of the same thing.