![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@expo/eas-build-job
Advanced tools
`@expo/eas-build-job` contains types and Joi schemas for job objects. It's used in `eas-cli` to create the job object and on EAS Build workers (and in `eas-cli-local-build-plugin`) to process the job and run the build.
@expo/eas-build-job is a package designed to facilitate the creation and management of build jobs for Expo applications using the Expo Application Services (EAS). It provides tools and utilities to define, configure, and execute build jobs for different platforms, such as iOS and Android, in a streamlined and efficient manner.
Creating a Build Job
This feature allows you to create a build job for an iOS project. You can specify the type of job, the platform, the root directory of the project, and the build profile to use.
{
"type": "eas-build-job",
"platform": "ios",
"projectRootDirectory": "./",
"buildProfile": "production"
}
Configuring Build Credentials
This feature allows you to configure build credentials for an Android project. You can specify the keystore information required for signing the APK.
{
"type": "eas-build-job",
"platform": "android",
"projectRootDirectory": "./",
"buildProfile": "production",
"credentials": {
"keystore": {
"dataBase64": "<base64-encoded-keystore>",
"keystorePassword": "<keystore-password>",
"keyAlias": "<key-alias>",
"keyPassword": "<key-password>"
}
}
}
Running a Build Job
This feature allows you to run a build job programmatically. You can define the build job configuration and use the `runBuildJob` function to execute it, handling the result or any errors that occur.
const { runBuildJob } = require('@expo/eas-build-job');
const buildJob = {
type: 'eas-build-job',
platform: 'ios',
projectRootDirectory: './',
buildProfile: 'production'
};
runBuildJob(buildJob).then(result => {
console.log('Build completed:', result);
}).catch(error => {
console.error('Build failed:', error);
});
Fastlane is an open-source platform aimed at simplifying Android and iOS deployment. It allows you to automate the entire build and release process, including beta deployment and release to the app store. Compared to @expo/eas-build-job, Fastlane offers a broader range of automation tools and is not limited to Expo projects.
CircleCI is a continuous integration and delivery platform that supports various programming languages and frameworks, including mobile app development. It offers robust tools for automating the build, test, and deployment processes. While @expo/eas-build-job is focused on Expo projects, CircleCI provides a more general-purpose CI/CD solution.
@expo/eas-build-job
contains types and Joi schemas for job objects. It's used in eas-cli
to create the job object and on EAS Build workers (and in eas-cli-local-build-plugin
) to process the job and run the build.
https://github.com/expo/eas-build/tree/main/packages/eas-build-job
FAQs
`@expo/eas-build-job` contains types and Joi schemas for job objects. It's used in `eas-cli` to create the job object and on EAS Build workers (and in `eas-cli-local-build-plugin`) to process the job and run the build.
The npm package @expo/eas-build-job receives a total of 80,769 weekly downloads. As such, @expo/eas-build-job popularity was classified as popular.
We found that @expo/eas-build-job demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 28 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.